Kingson-de /
marshal-serializer
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types = 1); |
||
| 4 | |||
| 5 | namespace KingsonDe\Marshal\Data; |
||
| 6 | |||
| 7 | class Item extends AbstractDataStructure { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @inheritdoc |
||
| 11 | */ |
||
| 12 | 7 | public function build() { |
|
| 13 | /** @noinspection PhpUndefinedMethodInspection */ |
||
| 14 | 7 | return $this->getMapper()->map(...$this->getData()); |
|
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 | } |
||
| 17 |