Skip to content

Commit

Permalink
fix: fix php 8.2 deprecation error (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aquive authored Feb 21, 2024
1 parent 2053b08 commit 793f7ef
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions Model/Settings/AccountSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,28 @@
use MyParcelNL\Sdk\src\Model\Carrier\AbstractCarrier;
use MyParcelNL\Sdk\src\Support\Collection;

/**
* @property null|\MyParcelNL\Sdk\src\Model\Account\Shop $shop
* @property null|\MyParcelNL\Sdk\src\Model\Account\Account $account
* @property Collection|\MyParcelNL\Sdk\src\Model\Account\CarrierOptions[] $carrier_options
* @property Collection|\MyParcelNL\Sdk\src\Model\Account\CarrierConfiguration[] $carrier_configurations
*/
class AccountSettings extends BaseModel
{

/**
* @var
*/
protected $shop;

/**
* @var
*/
protected $account;

/**
* @var
*/
protected $carrier_options;

/**
* @var string[]
* @var
*/
protected $attributes = [
'shop',
'account',
'carrier_options',
'carrier_configurations',
];
protected $carrier_configurations;

/**
* @var self
Expand Down

0 comments on commit 793f7ef

Please sign in to comment.