ExampleList   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 0
dl 0
loc 28
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A current() 0 4 1
A key() 0 4 1
A next() 0 4 1
A rewind() 0 4 1
A valid() 0 4 1
1
<?php
2
/**
3
 * This file is part of the Axstrad library.
4
 *
5
 * (c) Dan Kempster <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Axstrad\Component\Test\Example;
12
13
/**
14
 * Axstrad\Component\Test\Example\ExampleList
15
 *
16
 * @author Dan Kempster <[email protected]>
17
 * @license http://opensource.org/licenses/MIT MIT
18
 * @package Axstrad\Test
19
 * @subpackage Iterator
20
 */
21
class ExampleList implements
22
    \Iterator
23
{
24
    public function current()
25
    {
26
27
    }
28
29
    public function key()
30
    {
31
32
    }
33
34
    public function next()
35
    {
36
37
    }
38
39
    public function rewind()
40
    {
41
42
    }
43
44
    public function valid()
45
    {
46
47
    }
48
}
49