ProgressiveAction::getProgressive()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace LeKoala\CmsActions;
4
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)
28
    {
29
        $this->progressive = $progressive;
30
31
        return $this;
32
    }
33
}
34