some stan
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ class VisaMasterPaymentOrderItem extends Model
|
||||
/**
|
||||
* Parent order
|
||||
*
|
||||
* @return BelongsTo<VisaMasterPaymentOrder, self>
|
||||
* @return BelongsTo<VisaMasterPaymentOrder, $this>
|
||||
*/
|
||||
public function parent(): BelongsTo
|
||||
{
|
||||
@@ -48,7 +48,7 @@ class VisaMasterPaymentOrderItem extends Model
|
||||
/**
|
||||
* Online payment
|
||||
*
|
||||
* @return BelongsTo<OnlinePayment, self>
|
||||
* @return BelongsTo<OnlinePayment, $this>
|
||||
*/
|
||||
public function onlinePayment(): BelongsTo
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user