Total Complexity | 6 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Coverage | 42.86% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class EntityVarMacroOutput implements EntityInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $name; |
||
23 | |||
24 | /** |
||
25 | * @var int |
||
26 | */ |
||
27 | protected $cPadding; |
||
28 | |||
29 | /** |
||
30 | * @var int |
||
31 | */ |
||
32 | protected $length; |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 1 | public function getName() |
|
38 | { |
||
39 | 1 | return $this->name; |
|
40 | } |
||
41 | |||
42 | /** |
||
43 | * @param string $name |
||
44 | */ |
||
45 | public function setName($name) |
||
46 | { |
||
47 | $this->name = $name; |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @return int |
||
52 | */ |
||
53 | 1 | public function getcPadding() |
|
54 | { |
||
55 | 1 | return $this->cPadding; |
|
56 | } |
||
57 | |||
58 | /** |
||
59 | * @param int $cPadding |
||
60 | */ |
||
61 | public function setcPadding($cPadding) |
||
62 | { |
||
63 | $this->cPadding = $cPadding; |
||
64 | } |
||
65 | |||
66 | /** |
||
67 | * @return int |
||
68 | */ |
||
69 | 1 | public function getLength() |
|
72 | } |
||
73 | |||
74 | /** |
||
75 | * @param int $length |
||
76 | */ |
||
77 | public function setLength($length) |
||
80 | } |
||
81 | } |
||
82 |