| 1 | <?php |
||
| 7 | class ProductElement implements \JsonSerializable |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $id; |
||
| 13 | |||
| 14 | public function __construct(string $id) |
||
| 18 | |||
| 19 | public static function create(string $id): self |
||
| 23 | |||
| 24 | public function toArray(): array |
||
| 32 | |||
| 33 | public function jsonSerialize(): array |
||
| 37 | } |
||
| 38 |