vasildakov /
econt
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace VasilDakov\Econt\Model; |
||
| 6 | |||
| 7 | use JMS\Serializer\Annotation as Serializer; |
||
| 8 | |||
| 9 | final readonly class ShippingLabel |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | { |
||
| 11 | public function __construct( |
||
| 12 | #[Serializer\Type('string')] |
||
| 13 | public ?string $shipmentNumber = null, |
||
| 14 | ) { |
||
| 15 | |||
| 16 | } |
||
| 17 | } |