| 1 | <?php |
||
| 19 | trait ArrayToArray |
||
| 20 | { |
||
| 21 | use ArrayData; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param array $data |
||
| 25 | * @param $scope |
||
| 26 | * @param $identifier |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | abstract public function transform(array $data, $scope, $identifier); |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritdoc |
||
| 33 | */ |
||
| 34 | public function __invoke($data, Scope $scope, string $identifier = null) |
||
| 39 | } |
||
| 40 |