| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class Order extends Model { |
||
| 20 | |||
| 21 | protected static array $casting = [ |
||
| 22 | 'Created' => 'lifeboat_date_formatter', |
||
| 23 | 'LastModified' => 'lifeboat_date_formatter' |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @see Model::write() |
||
| 28 | * |
||
| 29 | * @return Order|null |
||
| 30 | * @throws ApiException |
||
| 31 | * @throws OAuthException |
||
| 32 | */ |
||
| 33 | public function save(): ?Order |
||
| 40 |