@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | |
25 | 25 | const VALIDATION_VARIABLE_MISSING = 52001; |
26 | 26 | |
27 | - /** |
|
28 | - * @var Mailcode_Variables_Variable|NULL |
|
29 | - */ |
|
27 | + /** |
|
28 | + * @var Mailcode_Variables_Variable|NULL |
|
29 | + */ |
|
30 | 30 | protected $variable; |
31 | 31 | |
32 | 32 | public function getName() : string |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | return true; |
55 | 55 | } |
56 | 56 | |
57 | - /** |
|
58 | - * Retrieves the variable to show, provided the command |
|
59 | - * is valid. |
|
60 | - * |
|
61 | - * @throws Mailcode_Exception |
|
62 | - * @return Mailcode_Variables_Variable |
|
63 | - */ |
|
57 | + /** |
|
58 | + * Retrieves the variable to show, provided the command |
|
59 | + * is valid. |
|
60 | + * |
|
61 | + * @throws Mailcode_Exception |
|
62 | + * @return Mailcode_Variables_Variable |
|
63 | + */ |
|
64 | 64 | public function getVariable() : Mailcode_Variables_Variable |
65 | 65 | { |
66 | 66 | $this->validate(); |
@@ -77,13 +77,13 @@ discard block |
||
77 | 77 | ); |
78 | 78 | } |
79 | 79 | |
80 | - /** |
|
81 | - * Retrieves the full name of the variable to show, |
|
82 | - * provided the command is valid. |
|
83 | - * |
|
84 | - * @throws Mailcode_Exception |
|
85 | - * @return string |
|
86 | - */ |
|
80 | + /** |
|
81 | + * Retrieves the full name of the variable to show, |
|
82 | + * provided the command is valid. |
|
83 | + * |
|
84 | + * @throws Mailcode_Exception |
|
85 | + * @return string |
|
86 | + */ |
|
87 | 87 | public function getVariableName() : string |
88 | 88 | { |
89 | 89 | return $this->getVariable()->getFullName(); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | $this->validate(); |
67 | 67 | |
68 | - if(isset($this->variable)) |
|
68 | + if (isset($this->variable)) |
|
69 | 69 | { |
70 | 70 | return $this->variable; |
71 | 71 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | $var = $info->getVariableByIndex(0); |
97 | 97 | |
98 | - if($var) |
|
98 | + if ($var) |
|
99 | 99 | { |
100 | 100 | $this->variable = $var->getVariable(); |
101 | 101 | return; |