some stan

This commit is contained in:
2025-11-15 21:32:03 +05:00
parent c24f7cbac6
commit c94ac5d12d
8 changed files with 28 additions and 29 deletions

View File

@@ -21,9 +21,9 @@ use Spatie\MediaLibrary\InteractsWithMedia;
* @property string $email
* @property string $region
* @property string $address
* @property array $sender_datas
* @property array $payment_reciever
* @property array $documents
* @property array<string, string> $sender_datas
* @property array<string, string> $payment_reciever
* @property array<string, string> $documents
* @property string $status
* @property string $notes
* @property string $sender_full_name
@@ -77,7 +77,7 @@ class VisaMasterPaymentOrder extends Model implements HasMedia
/**
* User
*
* @return BelongsTo<User, VisaMasterPaymentOrder>
* @return BelongsTo<User, $this>
*/
public function user(): BelongsTo
{
@@ -87,7 +87,7 @@ class VisaMasterPaymentOrder extends Model implements HasMedia
/**
* Branch
*
* @return BelongsTo<Branch, VisaMasterPaymentOrder>
* @return BelongsTo<Branch, $this>
*/
public function branch(): BelongsTo
{
@@ -97,7 +97,7 @@ class VisaMasterPaymentOrder extends Model implements HasMedia
/**
* Payment itmes
*
* @return HasMany<VisaMasterPaymentOrderItem, self>
* @return HasMany<VisaMasterPaymentOrderItem, $this>
*/
public function paymentItems(): HasMany
{