Completed
Push — master ( 28f8e2...8e1888 )
by Zoltán
05:02
created

ArrayList   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 7
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 49
ccs 0
cts 14
cp 0
rs 10

7 Methods

Rating   Name   Duplication   Size   Complexity  
A add() 0 3 1
A addAll() 0 3 1
A addTo() 0 3 1
A equals() 0 3 1
A remove() 0 3 1
A removeAll() 0 3 1
A removeAt() 0 3 1
1
<?php namespace BuildR\Collection\ArrayList;
2
3
use BuildR\Collection\Collection\AbstractCollection;
4
5
/**
6
 * ArrayList implementation
7
 *
8
 * BuildR PHP Framework
9
 *
10
 * @author Zoltán Borsos <[email protected]>
11
 * @package Collection
12
 * @subpackage ArrayList
13
 *
14
 * @copyright    Copyright 2015, Zoltán Borsos.
15
 * @license      https://github.com/Zolli/BuildR/blob/master/LICENSE.md
16
 * @link         https://github.com/Zolli/BuildR
17
 */
18
class ArrayList extends AbstractCollection implements ArrayListInterface {
19
20
    /**
21
     * {@inheritDoc}
22
     */
23
    public function add($element) {
24
25
    }
26
27
    /**
28
     * {@inheritDoc}
29
     */
30
    public function addAll($elements) {
31
32
    }
33
34
    /**
35
     * {@inheritDoc}
36
     */
37
    public function addTo($index, $element) {
38
39
    }
40
41
    /**
42
     * {@inheritDoc}
43
     */
44
    public function equals(ArrayListInterface $collection) {
45
46
    }
47
48
    /**
49
     * {@inheritDoc}
50
     */
51
    public function remove($element) {
52
53
    }
54
55
    public function removeAll($elements) {
56
57
    }
58
59
    /**
60
     * {@inheritDoc}
61
     */
62
    public function removeAt($index) {
63
64
    }
65
66
}
67