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

ArrayList::addTo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 2
crap 2
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