Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class PieAnimation extends Animation |
||
12 | { |
||
13 | /** |
||
14 | * @var bool |
||
15 | */ |
||
16 | private $animateRotate; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | private $animateScale; |
||
22 | |||
23 | /** |
||
24 | * @return bool |
||
25 | */ |
||
26 | public function isAnimateRotate() |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param bool $animateRotate |
||
33 | * |
||
34 | * @return PieAnimation |
||
35 | */ |
||
36 | public function setAnimateRotate($animateRotate) |
||
37 | { |
||
38 | $this->animateRotate = $animateRotate; |
||
39 | |||
40 | return $this; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return bool |
||
45 | */ |
||
46 | public function isAnimateScale() |
||
47 | { |
||
48 | return $this->animateScale; |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @param bool $animateScale |
||
53 | * |
||
54 | * @return PieAnimation |
||
55 | */ |
||
56 | public function setAnimateScale($animateScale) |
||
61 | } |
||
62 | } |
||
63 |