Total Complexity | 15 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Progression |
||
9 | { |
||
10 | |||
11 | private $from; |
||
12 | private $to; |
||
13 | private $start = 0; |
||
14 | private $len = null; |
||
15 | private $filters = []; |
||
16 | |||
17 | public function __construct(Group $from, Group $to, int $start = 0, int $len = null) { |
||
22 | } |
||
23 | |||
24 | public function __toString() { |
||
25 | return 'Team from '.$this->from; |
||
26 | } |
||
27 | |||
28 | public function addFilter(...$filters) { |
||
34 | } |
||
35 | |||
36 | public function progress(bool $blank = false) { |
||
59 |