Map
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 3
dl 0
loc 8
c 2
b 0
f 1
wmc 0
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
Protected member variable "array" must contain a leading underscore
Loading history...
24
}
25