| 1 | <?php |
||
| 4 | class DeletedList extends ModelCollection |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * Create a new Metadata Collection |
||
| 8 | * |
||
| 9 | * @param array $data Collection Data |
||
| 10 | */ |
||
| 11 | public function __construct(array $data) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Process items and cast them |
||
| 19 | * to DeletedMetadata Model |
||
| 20 | * |
||
| 21 | * @param array $items Unprocessed Items |
||
| 22 | * |
||
| 23 | * @return array Array of DeletedMetadata models |
||
| 24 | */ |
||
| 25 | protected function processItems(array $items) |
||
| 36 | } |
||
| 37 |