Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | trait ProgressiveAction |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | protected $progressive = false; |
||
11 | |||
12 | /** |
||
13 | * Get the value of progressive |
||
14 | * @return mixed |
||
15 | */ |
||
16 | public function getProgressive() |
||
17 | { |
||
18 | return $this->progressive; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Set the value of progressive |
||
23 | * |
||
24 | * @param mixed $progressive |
||
25 | * @return $this |
||
26 | */ |
||
27 | public function setProgressive($progressive) |
||
32 | } |
||
33 | } |
||
34 |