Passed
Push — master ( c53bf4...174259 )
by Sebastian
02:45
created
src/Mailcode/Collection.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         
100 100
         $errors = $this->errors;
101 101
         
102
-        if(!$result->isValid())
102
+        if (!$result->isValid())
103 103
         {
104 104
             $errors[] = new Mailcode_Collection_Error_Message(
105 105
                 '',
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     {
116 116
         $errors = $this->getErrors();
117 117
         
118
-        if(!empty($errors))
118
+        if (!empty($errors))
119 119
         {
120 120
             return array_shift($errors);
121 121
         }
@@ -157,11 +157,11 @@  discard block
 block discarded – undo
157 157
     {
158 158
         $hashes = array();
159 159
         
160
-        foreach($this->commands as $command)
160
+        foreach ($this->commands as $command)
161 161
         {
162 162
             $hash = $command->getHash();
163 163
             
164
-            if(!isset($hashes[$hash]))
164
+            if (!isset($hashes[$hash]))
165 165
             {
166 166
                 $hashes[$hash] = $command;
167 167
             }
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     */
179 179
     public function addCommands(array $commands) : Mailcode_Collection
180 180
     {
181
-        foreach($commands as $command)
181
+        foreach ($commands as $command)
182 182
         {
183 183
             $this->addCommand($command);
184 184
         }
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     {
198 198
         $collection = new Mailcode_Variables_Collection_Regular();
199 199
         
200
-        foreach($this->commands as $command)
200
+        foreach ($this->commands as $command)
201 201
         {
202 202
             $collection->mergeWith($command->getVariables());
203 203
         }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     
208 208
     public function getValidationResult() : OperationResult
209 209
     {
210
-        if(isset($this->validationResult))
210
+        if (isset($this->validationResult))
211 211
         {
212 212
             return $this->validationResult;
213 213
         }
@@ -223,9 +223,9 @@  discard block
 block discarded – undo
223 223
     {
224 224
         $errors = $this->getErrors();
225 225
         
226
-        foreach($errors as $error)
226
+        foreach ($errors as $error)
227 227
         {
228
-            if($error->getCode() === $code)
228
+            if ($error->getCode() === $code)
229 229
             {
230 230
                 return true;
231 231
             }
@@ -243,9 +243,9 @@  discard block
 block discarded – undo
243 243
     {
244 244
         $result = array();
245 245
         
246
-        foreach($this->commands as $command)
246
+        foreach ($this->commands as $command)
247 247
         {
248
-            if($command instanceof Mailcode_Commands_Command_ShowVariable)
248
+            if ($command instanceof Mailcode_Commands_Command_ShowVariable)
249 249
             {
250 250
                 $result[] = $command;
251 251
             }
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
     {
259 259
         $commands = $this->getCommands();
260 260
         
261
-        if(!empty($commands))
261
+        if (!empty($commands))
262 262
         {
263 263
             return array_shift($commands);
264 264
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Highlighter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $this->parts[] = $this->renderTag(array('command-name'), $this->command->getName());
53 53
         
54
-        if($this->command->hasType())
54
+        if ($this->command->hasType())
55 55
         {
56 56
             $this->parts[] = ' '.$this->renderTag(array('command-type'), $this->command->getType());
57 57
         }
58 58
         
59
-        if($this->command->requiresParameters())
59
+        if ($this->command->requiresParameters())
60 60
         {
61 61
             $this->parts[] = $this->renderTag(array('hyphen'), ':');
62 62
             $this->parts[] = '<wbr>';
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     
66 66
     protected function appendParams() : void
67 67
     {
68
-        if($this->command->hasParameters())
68
+        if ($this->command->hasParameters())
69 69
         {
70 70
             $this->parts[] = ' '.$this->renderTag(array('params'), $this->command->getParamsString());
71 71
         }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $parts = array();
82 82
         
83
-        foreach($classes as $class)
83
+        foreach ($classes as $class)
84 84
         {
85 85
             $parts[] = 'mailcode-'.$class;
86 86
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $operand = $this->getOperandByIndex(1);
49 49
         $value = $this->getTokenByIndex(2);
50 50
         
51
-        if($variable && $operand && $value && $operand->isAssignment())
51
+        if ($variable && $operand && $value && $operand->isAssignment())
52 52
         {
53 53
             return true;
54 54
         }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $operand = $this->getOperandByIndex(1);
68 68
         $value = $this->getTokenByIndex(2);
69 69
         
70
-        if($variable && $operand && $value && $operand->isComparator())
70
+        if ($variable && $operand && $value && $operand->isComparator())
71 71
         {
72 72
             return true;
73 73
         }
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $result = array();
86 86
         
87
-        foreach($this->tokens as $token)
87
+        foreach ($this->tokens as $token)
88 88
         {
89
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
89
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
90 90
             {
91 91
                 $result[] = $token->getVariable();
92 92
             }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         $token = $this->getTokenByIndex($index);
101 101
         
102
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
102
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
103 103
         {
104 104
             return $token;
105 105
         }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $token = $this->getTokenByIndex($index);
113 113
         
114
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
114
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
115 115
         {
116 116
             return $token;
117 117
         }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     {
124 124
         $token = $this->getTokenByIndex($index);
125 125
         
126
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
126
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
127 127
         {
128 128
             return $token;
129 129
         }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $token = $this->getTokenByIndex($index);
137 137
         
138
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
138
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
139 139
         {
140 140
             return $token;
141 141
         }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     
146 146
     public function getTokenByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token
147 147
     {
148
-        if(isset($this->tokens[$index]))
148
+        if (isset($this->tokens[$index]))
149 149
         {
150 150
             return $this->tokens[$index];
151 151
         }
@@ -166,9 +166,9 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $result = array();
168 168
         
169
-        foreach($this->tokens as $token)
169
+        foreach ($this->tokens as $token)
170 170
         {
171
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
171
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
172 172
             {
173 173
                 $result[] = $token;
174 174
             }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/IfVariable.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         
54 54
         $var = $info->getVariableByIndex(0);
55 55
         
56
-        if($var)
56
+        if ($var)
57 57
         {
58 58
             $this->variable = $var;
59 59
             return;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         
72 72
         $operand = $info->getOperandByIndex(1);
73 73
         
74
-        if(!$operand)
74
+        if (!$operand)
75 75
         {
76 76
             $this->validationResult->makeError(
77 77
                 t('No operand sign after the variable name.'),
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             return;
82 82
         }
83 83
         
84
-        if(!$operand->isComparator())
84
+        if (!$operand->isComparator())
85 85
         {
86 86
             $this->validationResult->makeError(
87 87
                 t('The operand sign is not a comparison operand.'),
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         
101 101
         $token = $info->getTokenByIndex(2);
102 102
         
103
-        if(!$token)
103
+        if (!$token)
104 104
         {
105 105
             $this->validationResult->makeError(
106 106
                 t('Nothing found after the comparison operand.'),
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             return;
111 111
         }
112 112
         
113
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Type_Value)
113
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Type_Value)
114 114
         {
115 115
             $this->value = $token;
116 116
             
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     */
131 131
     public function getVariable() : Mailcode_Variables_Variable
132 132
     {
133
-        if(isset($this->variable))
133
+        if (isset($this->variable))
134 134
         {
135 135
             return $this->variable->getVariable();
136 136
         }
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     
145 145
     public function getComparator() : string
146 146
     {
147
-        if(!isset($this->comparator))
147
+        if (!isset($this->comparator))
148 148
         {
149 149
             throw new Mailcode_Exception(
150 150
                 'No comparator available',
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/IfContains.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         
53 53
         $variable = $info->getVariableByIndex(0);
54 54
         
55
-        if($variable)
55
+        if ($variable)
56 56
         {
57 57
             $this->variable = $variable;
58 58
             return;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         // first variant: variable "Search term"
72 72
         $string = $info->getStringLiteralByIndex(1);
73 73
         
74
-        if($string)
74
+        if ($string)
75 75
         {
76 76
             $this->literal = $string;
77 77
             return;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         // second variant: variable insensitive: "Search term"
88 88
         $keyword = $info->getKeywordByIndex(1);
89 89
         
90
-        if(!$keyword)
90
+        if (!$keyword)
91 91
         {
92 92
             $this->validationResult->makeError(
93 93
                 t('Expected a search term or the %1$s keyword after the variable name.', 'insensitive:'),
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             return;
98 98
         }
99 99
         
100
-        if($keyword->getKeyword() !== 'insensitive:')
100
+        if ($keyword->getKeyword() !== 'insensitive:')
101 101
         {
102 102
             $this->validationResult->makeError(
103 103
                 t('Invalid keyword %1$s.', $keyword->getKeyword()).' '.
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         
120 120
         $string = $info->getStringLiteralByIndex(2);
121 121
         
122
-        if($string)
122
+        if ($string)
123 123
         {
124 124
             $this->literal = $string;
125 125
             return;
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     */
139 139
     public function getVariable() : Mailcode_Variables_Variable
140 140
     {
141
-        if(isset($this->variable))
141
+        if (isset($this->variable))
142 142
         {
143 143
             return $this->variable->getVariable();
144 144
         }
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     
158 158
     public function getSearchTerm() : string
159 159
     {
160
-        if(!isset($this->literal))
160
+        if (!isset($this->literal))
161 161
         {
162 162
             throw new Mailcode_Exception(
163 163
                 'No string literal available',
Please login to merge, or discard this patch.
src/Mailcode/Commands.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         static $ids = array();
46 46
         
47
-        if(empty($ids)) {
47
+        if (empty($ids)) {
48 48
             $ids = \AppUtils\FileHelper::createFileFinder(__DIR__.'/Commands/Command')
49 49
             ->getPHPClassNames();
50 50
         }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     */
62 62
     public function getAll()
63 63
     {
64
-        if(!empty($this->commands)) {
64
+        if (!empty($this->commands)) {
65 65
             return $this->commands;
66 66
         }
67 67
         
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         
70 70
         $result = array();
71 71
         
72
-        foreach($ids as $id) 
72
+        foreach ($ids as $id) 
73 73
         {
74 74
             $result[] = $this->getDummyCommand($id);
75 75
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         static $instances = array();
96 96
         
97
-        if(!isset($instances[$id])) 
97
+        if (!isset($instances[$id])) 
98 98
         {
99 99
             $instances[$id] = $this->createCommand($id, '__dummy', '', '');
100 100
         }
@@ -115,9 +115,9 @@  discard block
 block discarded – undo
115 115
     {
116 116
         $items = $this->getAll();
117 117
         
118
-        foreach($items as $item) 
118
+        foreach ($items as $item) 
119 119
         {
120
-            if($item->getName() === $name) {
120
+            if ($item->getName() === $name) {
121 121
                 return $item->getID();
122 122
             }
123 123
         }
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
     {
150 150
         $items = $this->getAll();
151 151
         
152
-        foreach($items as $item)
152
+        foreach ($items as $item)
153 153
         {
154
-            if($item->getName() === $name) {
154
+            if ($item->getName() === $name) {
155 155
                 return true;
156 156
             }
157 157
         }
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     {
164 164
         $class = $this->resolveClassName($id, $type);
165 165
         
166
-        if(!class_exists($class))
166
+        if (!class_exists($class))
167 167
         {
168 168
             throw new Mailcode_Exception(
169 169
                 'No such command',
@@ -185,9 +185,9 @@  discard block
 block discarded – undo
185 185
         
186 186
         $dummy = $this->getDummyCommand($id);
187 187
         
188
-        if($dummy->supportsType())
188
+        if ($dummy->supportsType())
189 189
         {
190
-            if(empty($type))
190
+            if (empty($type))
191 191
             {
192 192
                 $type = $dummy->getDefaultType();
193 193
             }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     */
208 208
     private function getDummyCommand(string $id) : Mailcode_Commands_Command
209 209
     {
210
-        if(!isset(self::$dummyCommands[$id]))
210
+        if (!isset(self::$dummyCommands[$id]))
211 211
         {
212 212
             $class = 'Mailcode\Mailcode_Commands_Command_'.$id;
213 213
             self::$dummyCommands[$id] = new $class('__dummy');
Please login to merge, or discard this patch.
src/Mailcode/Factory.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         
49 49
         self::_checkCommand($cmd);
50 50
         
51
-        if($cmd instanceof Mailcode_Commands_Command_ShowVariable)
51
+        if ($cmd instanceof Mailcode_Commands_Command_ShowVariable)
52 52
         {
53 53
             return $cmd;
54 54
         }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         
76 76
         self::_checkCommand($cmd);
77 77
         
78
-        if($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
78
+        if ($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
79 79
         {
80 80
             return $cmd;
81 81
         }
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
     * 
95 95
     * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED
96 96
     */
97
-    public static function setVar(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable
97
+    public static function setVar(string $variableName, string $value, bool $quoteValue = true) : Mailcode_Commands_Command_SetVariable
98 98
     {
99 99
         $variableName = self::_filterVariableName($variableName);
100 100
         
101
-        if($quoteValue)
101
+        if ($quoteValue)
102 102
         {
103 103
             $value = self::_quoteString($value);
104 104
         }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         
115 115
         self::_checkCommand($cmd);
116 116
         
117
-        if($cmd instanceof Mailcode_Commands_Command_SetVariable)
117
+        if ($cmd instanceof Mailcode_Commands_Command_SetVariable)
118 118
         {
119 119
             return $cmd;
120 120
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         
150 150
         self::_checkCommand($cmd);
151 151
         
152
-        if($cmd instanceof Mailcode_Commands_Command_Comment)
152
+        if ($cmd instanceof Mailcode_Commands_Command_Comment)
153 153
         {
154 154
             return $cmd;
155 155
         }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         
169 169
         self::_checkCommand($cmd);
170 170
         
171
-        if($cmd instanceof Mailcode_Commands_Command_Else)
171
+        if ($cmd instanceof Mailcode_Commands_Command_Else)
172 172
         {
173 173
             return $cmd;
174 174
         }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
         
188 188
         self::_checkCommand($cmd);
189 189
         
190
-        if($cmd instanceof Mailcode_Commands_Command_End)
190
+        if ($cmd instanceof Mailcode_Commands_Command_End)
191 191
         {
192 192
             return $cmd;
193 193
         }
@@ -195,11 +195,11 @@  discard block
 block discarded – undo
195 195
         throw self::_exceptionUnexpectedType('End', $cmd);
196 196
     }
197 197
     
198
-    protected static function _buildIf(string $ifType, string $params, string $type='') : Mailcode_Commands_IfBase
198
+    protected static function _buildIf(string $ifType, string $params, string $type = '') : Mailcode_Commands_IfBase
199 199
     {
200 200
         $stringType = $type;
201 201
         
202
-        if(!empty($type))
202
+        if (!empty($type))
203 203
         {
204 204
             $stringType = ' '.$type;
205 205
         }
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
         
219 219
         self::_checkCommand($command);
220 220
         
221
-        if($command instanceof Mailcode_Commands_IfBase)
221
+        if ($command instanceof Mailcode_Commands_IfBase)
222 222
         {
223 223
             return $command;
224 224
         }
@@ -226,9 +226,9 @@  discard block
 block discarded – undo
226 226
         throw self::_exceptionUnexpectedType('IfBase', $command);
227 227
     }
228 228
   
229
-    protected static function _buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_IfBase
229
+    protected static function _buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_IfBase
230 230
     {
231
-        if($quoteValue)
231
+        if ($quoteValue)
232 232
         {
233 233
             $value = self::_quoteString($value);
234 234
         }
@@ -243,11 +243,11 @@  discard block
 block discarded – undo
243 243
         return self::_buildIf($ifType, $condition, 'variable');
244 244
     }
245 245
     
246
-    public static function if(string $condition, string $type='') : Mailcode_Commands_Command_If
246
+    public static function if (string $condition, string $type = '') : Mailcode_Commands_Command_If
247 247
     {
248 248
         $command = self::_buildIf('If', $condition, $type);
249 249
         
250
-        if($command instanceof Mailcode_Commands_Command_If)
250
+        if ($command instanceof Mailcode_Commands_Command_If)
251 251
         {
252 252
             return $command;
253 253
         }
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
255 255
         throw self::_exceptionUnexpectedType('If', $command);
256 256
     }
257 257
     
258
-    public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
258
+    public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
259 259
     {
260 260
         $command = self::_buildIfVar('If', $variable, $operand, $value, $quoteValue);
261 261
         
262
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
262
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
263 263
         {
264 264
             return $command;
265 265
         }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
     {
272 272
         $command = self::_buildIfVar('If', $variable, $operand, $value, true);
273 273
         
274
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
274
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
275 275
         {
276 276
             return $command;
277 277
         }
@@ -279,11 +279,11 @@  discard block
 block discarded – undo
279 279
         throw self::_exceptionUnexpectedType('IfVarString', $command);
280 280
     }
281 281
     
282
-    public static function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
282
+    public static function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
283 283
     {
284 284
         $command = self::_buildIfVar('If', $variable, '==', $value, $quoteValue);
285 285
         
286
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
286
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
287 287
         {
288 288
             return $command;
289 289
         }
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     {
296 296
         $command = self::_buildIfVar('If', $variable, '==', $value, true);
297 297
         
298
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
298
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
299 299
         {
300 300
             return $command;
301 301
         }
@@ -303,11 +303,11 @@  discard block
 block discarded – undo
303 303
         throw self::_exceptionUnexpectedType('IfarEqualsString', $command);
304 304
     }
305 305
     
306
-    public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable
306
+    public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable
307 307
     {
308 308
         $command = self::_buildIfVar('If', $variable, '!=', $value, $quoteValue);
309 309
         
310
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
310
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
311 311
         {
312 312
             return $command;
313 313
         }
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
     {
320 320
         $command = self::_buildIfVar('If', $variable, '!=', $value, true);
321 321
         
322
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
322
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
323 323
         {
324 324
             return $command;
325 325
         }
@@ -327,11 +327,11 @@  discard block
 block discarded – undo
327 327
         throw self::_exceptionUnexpectedType('IfVarNotEqualsString', $command);
328 328
     }
329 329
     
330
-    public static function elseIf(string $condition, string $type='') : Mailcode_Commands_Command_ElseIf
330
+    public static function elseIf (string $condition, string $type = '') : Mailcode_Commands_Command_ElseIf
331 331
     {
332 332
         $command = self::_buildIf('ElseIf', $condition, $type);
333 333
         
334
-        if($command instanceof Mailcode_Commands_Command_ElseIf)
334
+        if ($command instanceof Mailcode_Commands_Command_ElseIf)
335 335
         {
336 336
             return $command;
337 337
         }
@@ -339,11 +339,11 @@  discard block
 block discarded – undo
339 339
         throw self::_exceptionUnexpectedType('ElseIf', $command);
340 340
     }
341 341
     
342
-    public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable
342
+    public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable
343 343
     {
344 344
         $command = self::_buildIfVar('ElseIf', $variable, $operand, $value, $quoteValue);
345 345
         
346
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
346
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
347 347
         {
348 348
             return $command;
349 349
         }
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
     {
356 356
         $command = self::_buildIfVar('ElseIf', $variable, $operand, $value, true);
357 357
         
358
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
358
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
359 359
         {
360 360
             return $command;
361 361
         }
@@ -363,11 +363,11 @@  discard block
 block discarded – undo
363 363
         throw self::_exceptionUnexpectedType('ElseIfVarString', $command);
364 364
     }
365 365
     
366
-    public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable
366
+    public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable
367 367
     {
368 368
         $command = self::_buildIfVar('ElseIf', $variable, '==', $value, $quoteValue);
369 369
         
370
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
370
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
371 371
         {
372 372
             return $command;
373 373
         }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
     {
380 380
         $command = self::_buildIfVar('ElseIf', $variable, '==', $value, true);
381 381
         
382
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
382
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
383 383
         {
384 384
             return $command;
385 385
         }
@@ -387,11 +387,11 @@  discard block
 block discarded – undo
387 387
         throw self::_exceptionUnexpectedType('ElseIfVarEqualsString', $command);
388 388
     }
389 389
     
390
-    public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable
390
+    public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable
391 391
     {
392 392
         $command = self::_buildIfVar('ElseIf', $variable, '!=', $value, $quoteValue);
393 393
         
394
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
394
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
395 395
         {
396 396
             return $command;
397 397
         }
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
     {
404 404
         $command = self::_buildIfVar('ElseIf', $variable, '!=', $value, true);
405 405
         
406
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
406
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable)
407 407
         {
408 408
             return $command;
409 409
         }
@@ -411,11 +411,11 @@  discard block
 block discarded – undo
411 411
         throw self::_exceptionUnexpectedType('ElseIfVarNotEqualsString', $command);
412 412
     }
413 413
     
414
-    public static function ifContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains
414
+    public static function ifContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains
415 415
     {
416 416
         $command = self::_buildIfContains('If', $variable, $search, $caseInsensitive);
417 417
         
418
-        if($command instanceof Mailcode_Commands_Command_If_Contains)
418
+        if ($command instanceof Mailcode_Commands_Command_If_Contains)
419 419
         {
420 420
             return $command;
421 421
         }
@@ -423,11 +423,11 @@  discard block
 block discarded – undo
423 423
         throw self::_exceptionUnexpectedType('ElseIfContains', $command);
424 424
     }
425 425
     
426
-    public static function elseIfContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains
426
+    public static function elseIfContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains
427 427
     {
428 428
         $command = self::_buildIfContains('ElseIf', $variable, $search, $caseInsensitive);
429 429
         
430
-        if($command instanceof Mailcode_Commands_Command_ElseIf_Contains)
430
+        if ($command instanceof Mailcode_Commands_Command_ElseIf_Contains)
431 431
         {
432 432
             return $command;
433 433
         }
@@ -435,11 +435,11 @@  discard block
 block discarded – undo
435 435
         throw self::_exceptionUnexpectedType('ElseIfContains', $command);
436 436
     }
437 437
     
438
-    protected static function _buildIfContains(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase
438
+    protected static function _buildIfContains(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase
439 439
     {
440 440
         $keyword = ' ';
441 441
         
442
-        if($caseInsensitive)
442
+        if ($caseInsensitive)
443 443
         {
444 444
             $keyword = ' insensitive: ';
445 445
         }
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
     
475 475
     protected static function _checkCommand(Mailcode_Commands_Command $command) : void
476 476
     {
477
-        if($command->isValid())
477
+        if ($command->isValid())
478 478
         {
479 479
             return;
480 480
         }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             ')'
49 49
         );
50 50
         
51
-        foreach($escape as $char)
51
+        foreach ($escape as $char)
52 52
         {
53 53
             $string = str_replace($char, '\\'.$char, $string);
54 54
         }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/If.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
 {
23 23
     public function translate(Mailcode_Commands_Command_If $command): string
24 24
     {
25
-        if($command instanceof Mailcode_Commands_Command_If_Command)
25
+        if ($command instanceof Mailcode_Commands_Command_If_Command)
26 26
         {
27 27
             return $this->translateCommand($command);
28 28
         }
29 29
         
30
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
30
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
31 31
         {
32 32
             return $this->translateVariable($command);
33 33
         }
34 34
         
35
-        if($command instanceof Mailcode_Commands_Command_If_Contains)
35
+        if ($command instanceof Mailcode_Commands_Command_If_Contains)
36 36
         {
37 37
             return $this->translateContains($command);
38 38
         }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $params = $command->getParams();
46 46
         
47
-        if(!$params)
47
+        if (!$params)
48 48
         {
49 49
             return '';
50 50
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     protected function translateContains(Mailcode_Commands_Command_If_Contains $command) : string
69 69
     {
70 70
         $opts = 's';
71
-        if($command->isCaseInsensitive())
71
+        if ($command->isCaseInsensitive())
72 72
         {
73 73
             $opts = 'is';
74 74
         }
Please login to merge, or discard this patch.