Skip to content

Commit 15ccb82

Browse files
committed
accessor implementation updated
1 parent cde4cb2 commit 15ccb82

1 file changed

Lines changed: 1 addition & 67 deletions

File tree

src/Abstracts/BaseModel.php

Lines changed: 1 addition & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
class_alias(determine_base_model(), VirtualModel::class);
2828

2929
/**
30+
* @property int|null $id
3031
* @method string|int getKey()
3132
* @method void fresh()
3233
* @method bool save()
@@ -58,73 +59,6 @@ class_alias(determine_base_model(), VirtualModel::class);
5859
* @const string|null CREATED_AT
5960
* @const string|null UPDATED_AT
6061
*
61-
* @property int|null $id
62-
* @property int|null $source_country_id
63-
* @property int|null $destination_country_id
64-
* @property int|null $parent_id
65-
* @property string|null $description
66-
* @property int|null $sender_receiver_id
67-
* @property int|null $user_id
68-
* @property int|null $service_id
69-
* @property int|null $service_vendor_id
70-
* @property string|null $vendor
71-
* @property int|null $transaction_form_id
72-
* @property Carbon|null $ordered_at
73-
* @property float|null $amount
74-
* @property string|null $currency
75-
* @property float|null $converted_amount
76-
* @property string|null $converted_currency
77-
* @property string|null $order_number
78-
* @property RiskProfile|null $risk_profile
79-
* @property string|null $notes
80-
* @property bool|null $is_refunded
81-
* @property array|null $order_data
82-
* @property OrderStatus|null $status
83-
* @property int|null $assigned_user_id
84-
* @property array|null $timeline
85-
* @property int|null $creator_id
86-
* @property int|null $editor_id
87-
* @property int|null $destroyer_id
88-
* @property int|null $restorer_id
89-
* @property Carbon|null $created_at
90-
* @property Carbon|null $updated_at
91-
* @property Carbon|null $deleted_at
92-
* @property Carbon|null $restored_at
93-
*
94-
* @relations
95-
*
96-
* @property self $parentOrder
97-
* @property TransactionForm $transactionForm
98-
* @property \Fintech\Auth\Models\User $assignedUser
99-
* @property \Fintech\Business\Models\Service $service
100-
* @property \Fintech\Business\Models\ServiceVendor $serviceVendor
101-
* @property OrderDetail $orderDetails
102-
* @property-read array $links
103-
* @property-read OrderType $orderType
104-
* @property-read float $current_balance
105-
* @property-read float $transaction_amount
106-
*
107-
* @see HasOrderAttributes
108-
*
109-
* @property-read RequestPlatform $platform
110-
* @property-read string $amount_formatted
111-
* @property-read string $converted_amount_formatted
112-
* @property-read string $charge_amount
113-
* @property-read string $charge_amount_formatted
114-
* @property-read string $discount_amount
115-
* @property-read string $discount_amount_formatted
116-
* @property-read string $commission_amount
117-
* @property-read string $commission_amount_formatted
118-
* @property-read string $cost_amount
119-
* @property-read string $cost_amount_formatted
120-
* @property-read string $total_amount
121-
* @property-read string $total_amount_formatted
122-
* @property-read string $previous_amount
123-
* @property-read string $previous_amount_formatted
124-
* @property-read string $current_amount
125-
* @property-read string $current_amount_formatted
126-
* @property-read string $interac_charge
127-
* @property-read string $interac_charge_formatted
12862
*
12963
* @extends Model
13064
*/

0 commit comments

Comments
 (0)