1 | <?php |
||
2 | /* |
||
3 | * Copyright (C) 2022 Sebastian Böttger <[email protected]> |
||
4 | * You may use, distribute and modify this code under the |
||
5 | * terms of the MIT license. |
||
6 | * |
||
7 | * You should have received a copy of the MIT license with |
||
8 | * this file. If not, please visit: https://opensource.org/licenses/mit-license.php |
||
9 | */ |
||
10 | |||
11 | namespace Seboettg\Collection; |
||
12 | |||
13 | use Seboettg\Collection\Map\MapInterface; |
||
14 | use Seboettg\Collection\Map\MapTrait; |
||
15 | |||
16 | class Map implements MapInterface |
||
17 | { |
||
18 | use MapTrait; |
||
19 | |||
20 | /** |
||
21 | * @var array $array |
||
22 | */ |
||
23 | protected $array = []; |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
24 | } |
||
25 |