@@ -25,7 +25,7 @@ |
||
25 | 25 | $this->paramsString = trim($this->paramsString); |
26 | 26 | |
27 | 27 | // automatically quote the parameters, since comments don't require any. |
28 | - if(substr($this->paramsString, 0, 1) != '"') |
|
28 | + if (substr($this->paramsString, 0, 1) != '"') |
|
29 | 29 | { |
30 | 30 | $this->paramsString = '"'.$this->paramsString.'"'; |
31 | 31 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | { |
63 | 63 | $this->validate(); |
64 | 64 | |
65 | - if(isset($this->variable)) |
|
65 | + if (isset($this->variable)) |
|
66 | 66 | { |
67 | 67 | return $this->variable; |
68 | 68 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $vars = $this->getVariables()->getGroupedByName(); |
94 | 94 | $amount = count($vars); |
95 | 95 | |
96 | - if($amount === 1) |
|
96 | + if ($amount === 1) |
|
97 | 97 | { |
98 | 98 | $this->variable = array_pop($vars); |
99 | 99 | return; |