IteratorAbstract
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 3
1
<?php
2
namespace Jmw\Collection;
3
4
/**
5
 * This class is meant as a binding between a Collection iterator, and php's
6
 * default iteration scheme. Due to the implicit between the iteration approaches,
7
 * it leaves the specifics of implementing the methods up to the user.
8
 * @author john
9
 *
10
 */
11
class IteratorAbstract implements IteratorInterface, \Iterator
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: current, hasNext, key, next, remove, rewind, valid
Loading history...
12
{
13
}