| 1 | <?php |
||
| 19 | class Items extends CollectionAbstract |
||
| 20 | { |
||
| 21 | 4 | public function factoryElement($data) |
|
| 25 | |||
| 26 | 3 | private function to($method) |
|
| 27 | { |
||
| 28 | 3 | $array = []; |
|
| 29 | 3 | foreach ($this->all() as $item) { |
|
| 30 | 3 | $array[] = $item->$method(); |
|
| 31 | } |
||
| 32 | |||
| 33 | 3 | return $array; |
|
| 34 | } |
||
| 35 | |||
| 36 | 1 | public function toLog() |
|
| 40 | |||
| 41 | 3 | public function toSchema() |
|
| 45 | } |
||
| 46 |