GenericList   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A forge() 0 4 1
1
<?php
2
namespace Tuum\Form\Lists;
3
4
class GenericList extends AbstractList
5
{
6
    /**
7
     * @param null|int $start
8
     * @param null|int $end
9
     * @param int      $step
10
     * @return GenericList
11
     */
12
    public static function forge($start = null, $end = null, $step = 1)
13
    {
14
        return new self($start, $end, $step);
15
    }
16
}