1 | <?php |
||
23 | class Manager implements |
||
24 | ManagesItemsInterface, |
||
25 | ChainsNestedItemsInterface, |
||
26 | ContainerInterface, |
||
27 | ArrayAccess, |
||
28 | Countable, |
||
29 | IteratorAggregate, |
||
30 | JsonSerializable |
||
31 | { |
||
32 | use ManagesItemsTrait, ChainsNestedItemsTrait, ArrayableTrait; |
||
33 | |||
34 | /** |
||
35 | * Build a new manager instance |
||
36 | * @param array $items |
||
37 | */ |
||
38 | public function __construct($items = []) |
||
42 | } |
||
43 |