Passed
Push — master ( 1515ff...7c0b30 )
by Sebastian
04:21
created
src/Mailcode/Commands/Normalizer.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     
38 38
     public function normalize() : string
39 39
     {
40
-        if(!$this->command->isValid())
40
+        if (!$this->command->isValid())
41 41
         {
42 42
             return '';
43 43
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     
58 58
     private function addType() : void
59 59
     {
60
-        if(!$this->command->supportsType() || !$this->command->hasType())
60
+        if (!$this->command->supportsType() || !$this->command->hasType())
61 61
         {
62 62
             return;
63 63
         }
@@ -67,14 +67,14 @@  discard block
 block discarded – undo
67 67
     
68 68
     private function addParams(Mailcode_Commands_Command $command) : void
69 69
     {
70
-        if(!$command->requiresParameters())
70
+        if (!$command->requiresParameters())
71 71
         {
72 72
             return;
73 73
         }
74 74
         
75 75
         $params = $command->getParams();
76 76
         
77
-        if($params === null)
77
+        if ($params === null)
78 78
         {
79 79
             return;
80 80
         }
@@ -85,14 +85,14 @@  discard block
 block discarded – undo
85 85
     
86 86
     private function addLogicKeywords() : void
87 87
     {
88
-        if(!$this->command->supportsLogicKeywords())
88
+        if (!$this->command->supportsLogicKeywords())
89 89
         {
90 90
             return;
91 91
         }
92 92
         
93 93
         $keywords = $this->command->getLogicKeywords()->getKeywords();
94 94
         
95
-        foreach($keywords as $keyword)
95
+        foreach ($keywords as $keyword)
96 96
         {
97 97
             $this->parts[] = ' ';
98 98
             $this->parts[] = $keyword->getKeywordString(); // e.g. "if variable"
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/Base/AbstractIf.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,7 @@
 block discarded – undo
40 40
             if($keyCommand instanceof Mailcode_Commands_IfBase)
41 41
             {
42 42
                 $body .= ' '.$this->getSign($keyword).' '.$this->translateBody($keyCommand);
43
-            }
44
-            else
43
+            } else
45 44
             {
46 45
                 throw new Mailcode_Exception(
47 46
                     'Keyword command type does not match expected base class.',
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
         
34 34
         $keywords = $command->getLogicKeywords()->getKeywords();
35 35
         
36
-        foreach($keywords as $keyword)
36
+        foreach ($keywords as $keyword)
37 37
         {
38 38
             $keyCommand = $keyword->getCommand();
39 39
             
40
-            if($keyCommand instanceof Mailcode_Commands_IfBase)
40
+            if ($keyCommand instanceof Mailcode_Commands_IfBase)
41 41
             {
42 42
                 $body .= ' '.$this->getSign($keyword).' '.$this->translateBody($keyCommand);
43 43
             }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     
61 61
     protected function getSign(Mailcode_Commands_LogicKeywords_Keyword $keyword) : string
62 62
     {
63
-        switch($keyword->getName())
63
+        switch ($keyword->getName())
64 64
         {
65 65
             case 'and':
66 66
                 return '&&';
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     {
84 84
         $sign = '';
85 85
         
86
-        if($notEmpty)
86
+        if ($notEmpty)
87 87
         {
88 88
             $sign = '!';
89 89
         }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     {
100 100
         $params = $command->getParams();
101 101
         
102
-        if(!$params)
102
+        if (!$params)
103 103
         {
104 104
             return '';
105 105
         }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     protected function _translateContains(Mailcode_Variables_Variable $variable, bool $caseSensitive, string $searchTerm) : string
121 121
     {
122 122
         $opts = 's';
123
-        if($caseSensitive)
123
+        if ($caseSensitive)
124 124
         {
125 125
             $opts = 'is';
126 126
         }
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     protected function _translateSearch(string $mode, Mailcode_Variables_Variable $variable, bool $caseSensitive, string $searchTerm) : string
137 137
     {
138 138
         $method = $mode.'With';
139
-        if($caseSensitive)
139
+        if ($caseSensitive)
140 140
         {
141 141
             $method = $mode.'WithIgnoreCase';
142 142
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/LogicKeywords.php 2 patches
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -31,27 +31,27 @@  discard block
 block discarded – undo
31 31
     const VALIDATION_CANNOT_MIX_LOGIC_KEYWORDS = 60701;
32 32
     const VALIDATION_INVALID_SUB_COMMAND = 60702;
33 33
     
34
-   /**
35
-    * @var string
36
-    */
34
+    /**
35
+     * @var string
36
+     */
37 37
     private $paramsString;
38 38
     
39
-   /**
40
-    * @var string[]
41
-    */
39
+    /**
40
+     * @var string[]
41
+     */
42 42
     private $names = array(
43 43
         'and', 
44 44
         'or'
45 45
     );
46 46
     
47
-   /**
48
-    * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
-    */
47
+    /**
48
+     * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
+     */
50 50
     private $keywords = array();
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $mainParams = '';
56 56
     
57 57
     public function __construct(Mailcode_Commands_Command $command, string $paramsString)
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
         }
137 137
     }
138 138
     
139
-   /**
140
-    * @return string[]
141
-    */
139
+    /**
140
+     * @return string[]
141
+     */
142 142
     private function detectParameters() : array
143 143
     {
144 144
         $params = $this->paramsString;
@@ -156,13 +156,13 @@  discard block
 block discarded – undo
156 156
         return $stack;
157 157
     }
158 158
 
159
-   /**
160
-    * @param string $params
161
-    * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
-    * @param string[] $stack
163
-    * @throws Mailcode_Exception
164
-    * @return string
165
-    */
159
+    /**
160
+     * @param string $params
161
+     * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
+     * @param string[] $stack
163
+     * @throws Mailcode_Exception
164
+     * @return string
165
+     */
166 166
     private function detectParamsKeyword(string $params, Mailcode_Commands_LogicKeywords_Keyword $keyword, array &$stack) : string
167 167
     {
168 168
         $search = $keyword->getMatchedString();
@@ -187,22 +187,22 @@  discard block
 block discarded – undo
187 187
         return $params;
188 188
     }
189 189
     
190
-   /**
191
-    * Extracts the parameters string to use for the 
192
-    * original command itself, omitting all the logic
193
-    * keywords for the sub-commands.
194
-    * 
195
-    * @return string
196
-    */
190
+    /**
191
+     * Extracts the parameters string to use for the 
192
+     * original command itself, omitting all the logic
193
+     * keywords for the sub-commands.
194
+     * 
195
+     * @return string
196
+     */
197 197
     public function getMainParamsString() : string
198 198
     {
199 199
         return $this->mainParams;
200 200
     }
201 201
     
202
-   /**
203
-    * Retrieves the detected keyword names.
204
-    * @return string[]
205
-    */
202
+    /**
203
+     * Retrieves the detected keyword names.
204
+     * @return string[]
205
+     */
206 206
     public function getDetectedNames() : array
207 207
     {
208 208
         $names = array();
@@ -220,23 +220,23 @@  discard block
 block discarded – undo
220 220
         return $names;
221 221
     }
222 222
     
223
-   /**
224
-    * Retrieves all keywords that were detected in the
225
-    * command's parameters string, if any.
226
-    * 
227
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
-    */
223
+    /**
224
+     * Retrieves all keywords that were detected in the
225
+     * command's parameters string, if any.
226
+     * 
227
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
+     */
229 229
     public function getKeywords() : array
230 230
     {
231 231
         return $this->keywords;
232 232
     }
233 233
     
234
-   /**
235
-    * Detects any keyword statements in the parameters by keyword name.
236
-    * 
237
-    * @param string $name
238
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
-    */
234
+    /**
235
+     * Detects any keyword statements in the parameters by keyword name.
236
+     * 
237
+     * @param string $name
238
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
+     */
240 240
     private function detectKeywords(string $name) : array
241 241
     {
242 242
         $regex = sprintf('/%1$s\s+([a-z\-0-9]+):|%1$s:/x', $name);
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
     
72 72
     private function parse() : void
73 73
     {
74
-        foreach($this->names as $name)
74
+        foreach ($this->names as $name)
75 75
         {
76
-            if(!stristr($this->paramsString, $name))
76
+            if (!stristr($this->paramsString, $name))
77 77
             {
78 78
                 continue;
79 79
             }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $names = $this->getDetectedNames();
91 91
         $amount = count($names);
92 92
         
93
-        if($amount > 1)
93
+        if ($amount > 1)
94 94
         {
95 95
             $this->makeError(
96 96
                 t(
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     
110 110
     private function splitParams() : void
111 111
     {
112
-        if(empty($this->keywords))
112
+        if (empty($this->keywords))
113 113
         {
114 114
             $this->mainParams = $this->paramsString;
115 115
             
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
         
119 119
         $params = $this->detectParameters();
120 120
         
121
-        foreach($this->keywords as $keyword)
121
+        foreach ($this->keywords as $keyword)
122 122
         {
123 123
             $kParams = array_shift($params);
124 124
             
125 125
             $keyword->setParamsString($kParams);
126 126
             
127
-            if(!$keyword->isValid())
127
+            if (!$keyword->isValid())
128 128
             {
129 129
                 $this->makeError(
130 130
                     t('Error #%1$s:', $keyword->getCode()).' '.$keyword->getErrorMessage(),
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $params = $this->paramsString;
145 145
         $stack = array();
146 146
         
147
-        foreach($this->keywords as $keyword)
147
+        foreach ($this->keywords as $keyword)
148 148
         {
149 149
             $params = $this->detectParamsKeyword($params, $keyword, $stack);
150 150
         }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         $search = $keyword->getMatchedString();
169 169
         $pos = strpos($params, $search, 0);
170 170
         
171
-        if($pos === false)
171
+        if ($pos === false)
172 172
         {
173 173
             throw new Mailcode_Exception(
174 174
                 'Keyword matched string not found',
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $length = strlen($search);
181 181
         
182 182
         $store = substr($params, 0, $pos);
183
-        $params = trim(substr($params, $pos+$length));
183
+        $params = trim(substr($params, $pos + $length));
184 184
         
185 185
         $stack[] = $store;
186 186
         
@@ -207,11 +207,11 @@  discard block
 block discarded – undo
207 207
     {
208 208
         $names = array();
209 209
         
210
-        foreach($this->keywords as $keyword)
210
+        foreach ($this->keywords as $keyword)
211 211
         {
212 212
             $name = $keyword->getName();
213 213
             
214
-            if(!in_array($name, $names))
214
+            if (!in_array($name, $names))
215 215
             {
216 216
                 $names[] = $name;
217 217
             }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         $matches = array();
245 245
         preg_match_all($regex, $this->paramsString, $matches, PREG_PATTERN_ORDER);
246 246
         
247
-        if(!isset($matches[0][0]) || empty($matches[0][0]))
247
+        if (!isset($matches[0][0]) || empty($matches[0][0]))
248 248
         {
249 249
             return array();
250 250
         }
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         $amount = count($matches[0]);
253 253
         $result = array();
254 254
         
255
-        for($i=0; $i < $amount; $i++)
255
+        for ($i = 0; $i < $amount; $i++)
256 256
         {
257 257
             $result[] = $this->createKeyword(
258 258
                 $name, 
@@ -269,22 +269,22 @@  discard block
 block discarded – undo
269 269
         return !empty($this->keywords);
270 270
     }
271 271
     
272
-    public function appendAND(string $paramsString, string $type='') : Mailcode_Commands_LogicKeywords_Keyword
272
+    public function appendAND(string $paramsString, string $type = '') : Mailcode_Commands_LogicKeywords_Keyword
273 273
     {
274 274
         return $this->appendKeyword('and', $paramsString, $type);
275 275
     }
276 276
     
277
-    public function appendOR(string $paramsString, string $type='') : Mailcode_Commands_LogicKeywords_Keyword
277
+    public function appendOR(string $paramsString, string $type = '') : Mailcode_Commands_LogicKeywords_Keyword
278 278
     {
279 279
         return $this->appendKeyword('or', $paramsString, $type);
280 280
     }
281 281
     
282
-    public function appendKeyword(string $name, string $paramsString, string $type='') : Mailcode_Commands_LogicKeywords_Keyword
282
+    public function appendKeyword(string $name, string $paramsString, string $type = '') : Mailcode_Commands_LogicKeywords_Keyword
283 283
     {
284 284
         $keyword = $this->createKeyword($name, $type);
285 285
         $keyword->setParamsString($paramsString);
286 286
         
287
-        if(!$keyword->isValid())
287
+        if (!$keyword->isValid())
288 288
         {
289 289
             throw new Mailcode_Exception(
290 290
                 'Cannot append invalid logic keyword',
@@ -305,13 +305,13 @@  discard block
 block discarded – undo
305 305
         return $keyword;
306 306
     }
307 307
     
308
-    private function createKeyword(string $name, string $type='', string $matchedString='') : Mailcode_Commands_LogicKeywords_Keyword
308
+    private function createKeyword(string $name, string $type = '', string $matchedString = '') : Mailcode_Commands_LogicKeywords_Keyword
309 309
     {
310
-        if(empty($matchedString))
310
+        if (empty($matchedString))
311 311
         {
312 312
             $matchedString = $name;
313 313
             
314
-            if(!empty($type))
314
+            if (!empty($type))
315 315
             {
316 316
                 $matchedString .= ' '.$type;
317 317
             }
Please login to merge, or discard this patch.
src/Mailcode/Styler.php 2 patches
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
 {
25 25
     const ERROR_CSS_FILE_NOT_FOUND = 60901;
26 26
     
27
-   /**
28
-    * @var string
29
-    */
27
+    /**
28
+     * @var string
29
+     */
30 30
     private $path;
31 31
     
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     private $fileName = 'highlight.css';
36 36
     
37 37
     public function __construct()
@@ -54,22 +54,22 @@  discard block
 block discarded – undo
54 54
         $this->path = $path;
55 55
     }
56 56
    
57
-   /**
58
-    * Retrieves the raw CSS source for the highlighting.
59
-    * 
60
-    * @return string
61
-    */
57
+    /**
58
+     * Retrieves the raw CSS source for the highlighting.
59
+     * 
60
+     * @return string
61
+     */
62 62
     public function getCSS() : string
63 63
     {
64 64
         return FileHelper::readContents($this->path);
65 65
     }
66 66
     
67
-   /**
68
-    * Retrieves a fully formed `code` tag with the CSS,
69
-    * to inject inline into an HTML document.
70
-    * 
71
-    * @return string
72
-    */
67
+    /**
68
+     * Retrieves a fully formed `code` tag with the CSS,
69
+     * to inject inline into an HTML document.
70
+     * 
71
+     * @return string
72
+     */
73 73
     public function getStyleTag() : string
74 74
     {
75 75
         return sprintf(
@@ -78,23 +78,23 @@  discard block
 block discarded – undo
78 78
         );
79 79
     }
80 80
     
81
-   /**
82
-    * Retrieves the path to the stylesheet file.
83
-    * 
84
-    * @return string
85
-    */
81
+    /**
82
+     * Retrieves the path to the stylesheet file.
83
+     * 
84
+     * @return string
85
+     */
86 86
     public function getStylesheetPath() : string
87 87
     {
88 88
         return $this->path;
89 89
     }
90 90
     
91
-   /**
92
-    * Retrieves the URL to the stylesheet file, given the
93
-    * local URL to the application's vendor folder.
94
-    *  
95
-    * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
-    * @return string
97
-    */
91
+    /**
92
+     * Retrieves the URL to the stylesheet file, given the
93
+     * local URL to the application's vendor folder.
94
+     *  
95
+     * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
+     * @return string
97
+     */
98 98
     public function getStylesheetURL(string $vendorURL) : string
99 99
     {
100 100
         return sprintf(
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $folder = sprintf(__DIR__.'/../../css/%s', $this->fileName);
40 40
         $path = realpath($folder);
41 41
         
42
-        if($path === false)
42
+        if ($path === false)
43 43
         {
44 44
             throw new Mailcode_Exception(
45 45
                 'Could not find the highlight CSS file',
Please login to merge, or discard this patch.
src/Mailcode/Commands/LogicKeywords/Keyword.php 2 patches
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -29,39 +29,39 @@  discard block
 block discarded – undo
29 29
     const VALIDATION_NO_COMMAND_CREATED = 61101;
30 30
     const VALIDATION_INVALID_COMMAND_CREATED = 61102;
31 31
     
32
-   /**
33
-    * @var Mailcode_Commands_LogicKeywords
34
-    */
32
+    /**
33
+     * @var Mailcode_Commands_LogicKeywords
34
+     */
35 35
     private $keywords;
36 36
     
37
-   /**
38
-    * @var string
39
-    */
37
+    /**
38
+     * @var string
39
+     */
40 40
     private $name;
41 41
     
42
-   /**
43
-    * @var string
44
-    */
42
+    /**
43
+     * @var string
44
+     */
45 45
     private $keywordType;
46 46
     
47
-   /**
48
-    * @var string
49
-    */
47
+    /**
48
+     * @var string
49
+     */
50 50
     private $matchedString;
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $params = '';
56 56
     
57
-   /**
58
-    * @var boolean
59
-    */
57
+    /**
58
+     * @var boolean
59
+     */
60 60
     private $paramsSet = false;
61 61
     
62
-   /**
63
-    * @var Mailcode_Collection
64
-    */
62
+    /**
63
+     * @var Mailcode_Collection
64
+     */
65 65
     private $collection;
66 66
     
67 67
     public function __construct(Mailcode_Commands_LogicKeywords $keywords, string $name, string $matchedString, string $type)
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
         $this->matchedString = $matchedString;
73 73
     }
74 74
     
75
-   /**
76
-    * The keyword name, e.g. "and". Always lowercase.
77
-    * @return string
78
-    */
75
+    /**
76
+     * The keyword name, e.g. "and". Always lowercase.
77
+     * @return string
78
+     */
79 79
     public function getName() : string
80 80
     {
81 81
         return $this->name;
@@ -98,24 +98,24 @@  discard block
 block discarded – undo
98 98
         return $string;
99 99
     }
100 100
     
101
-   /**
102
-    * The full string that was matched in the command's parameters
103
-    * string. Examples: "and:", "and variable:"...
104
-    * 
105
-    * @return string
106
-    */
101
+    /**
102
+     * The full string that was matched in the command's parameters
103
+     * string. Examples: "and:", "and variable:"...
104
+     * 
105
+     * @return string
106
+     */
107 107
     public function getMatchedString() : string
108 108
     {
109 109
         return $this->matchedString;
110 110
     }
111 111
     
112
-   /**
113
-    * Sets the parameters string matching this logic keyword,
114
-    * which is used to build the actual sub-command. Set by
115
-    * the LogicKeywords class instance.
116
-    * 
117
-    * @param string $params
118
-    */
112
+    /**
113
+     * Sets the parameters string matching this logic keyword,
114
+     * which is used to build the actual sub-command. Set by
115
+     * the LogicKeywords class instance.
116
+     * 
117
+     * @param string $params
118
+     */
119 119
     public function setParamsString(string $params) : void
120 120
     {
121 121
         if($this->paramsSet)
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
         $this->createCommand();
134 134
     }
135 135
     
136
-   /**
137
-    * Retrieves the full command string used to create 
138
-    * the actual command. For opening commands like IF,
139
-    * this includes the closing {end} command.
140
-    * 
141
-    * @return string
142
-    */
136
+    /**
137
+     * Retrieves the full command string used to create 
138
+     * the actual command. For opening commands like IF,
139
+     * this includes the closing {end} command.
140
+     * 
141
+     * @return string
142
+     */
143 143
     public function getCommandString() : string
144 144
     {
145 145
         $string = sprintf(
@@ -182,12 +182,12 @@  discard block
 block discarded – undo
182 182
         }
183 183
     }
184 184
     
185
-   /**
186
-    * Retrieves the command for the keyword.
187
-    * 
188
-    * @throws Mailcode_Exception
189
-    * @return Mailcode_Commands_Command
190
-    */
185
+    /**
186
+     * Retrieves the command for the keyword.
187
+     * 
188
+     * @throws Mailcode_Exception
189
+     * @return Mailcode_Commands_Command
190
+     */
191 191
     public function getCommand() : Mailcode_Commands_Command
192 192
     {
193 193
         $command = $this->collection->getFirstCommand();
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $string = $this->name;
92 92
         
93
-        if(!empty($this->keywordType))
93
+        if (!empty($this->keywordType))
94 94
         {
95 95
             $string .= ' '.$this->keywordType;
96 96
         }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     */
119 119
     public function setParamsString(string $params) : void
120 120
     {
121
-        if($this->paramsSet)
121
+        if ($this->paramsSet)
122 122
         {
123 123
             throw new Mailcode_Exception(
124 124
                 'Cannot set parameters twice',
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         
161 161
         $command = $this->collection->getFirstCommand();
162 162
         
163
-        if($command === null)
163
+        if ($command === null)
164 164
         {
165 165
             $this->makeError(
166 166
                 t('No command could be created using the following string:').' '.
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
             return;
173 173
         }
174 174
         
175
-        if(!$command->isValid())
175
+        if (!$command->isValid())
176 176
         {
177 177
             $this->makeError(
178 178
                 t('Invalid command created:').' '.
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     {
193 193
         $command = $this->collection->getFirstCommand();
194 194
         
195
-        if($command !== null && $command->isValid())
195
+        if ($command !== null && $command->isValid())
196 196
         {
197 197
             return $command;
198 198
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Highlighter.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Commands_Highlighter
22 22
 {
23
-   /**
24
-    * @var Mailcode_Commands_Command
25
-    */
23
+    /**
24
+     * @var Mailcode_Commands_Command
25
+     */
26 26
     protected $command;
27 27
     
28
-   /**
29
-    * @var string[]
30
-    */
28
+    /**
29
+     * @var string[]
30
+     */
31 31
     protected $parts = array();
32 32
     
33 33
     public function __construct(Mailcode_Commands_Command $command)
34 34
     {
35
-       $this->command = $command;
35
+        $this->command = $command;
36 36
     }
37 37
     
38 38
     public function highlight() : string
@@ -121,11 +121,11 @@  discard block
 block discarded – undo
121 121
         $this->appendParams($keyword->getCommand());
122 122
     }
123 123
     
124
-   /**
125
-    * @param string[] $classes
126
-    * @param string $content
127
-    * @return string
128
-    */
124
+    /**
125
+     * @param string[] $classes
126
+     * @param string $content
127
+     * @return string
128
+     */
129 129
     protected function renderTag(array $classes, string $content) : string
130 130
     {
131 131
         $parts = array();
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
     {
53 53
         $this->parts[] = $this->renderTag(array('command-name'), $this->command->getName());
54 54
         
55
-        if($this->command->hasType())
55
+        if ($this->command->hasType())
56 56
         {
57 57
             $this->parts[] = ' '.$this->renderTag(array('command-type'), $this->command->getType());
58 58
         }
59 59
         
60
-        if($this->command->requiresParameters())
60
+        if ($this->command->requiresParameters())
61 61
         {
62 62
             $this->parts[] = $this->renderTag(array('hyphen'), ':');
63 63
             $this->parts[] = '<wbr>';
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $params = $command->getParams();
70 70
         
71
-        if($params === null)
71
+        if ($params === null)
72 72
         {
73 73
             return;
74 74
         }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         
78 78
         $this->parts[] = '<span class="mailcode-params">';
79 79
         
80
-        foreach($tokens as $token)
80
+        foreach ($tokens as $token)
81 81
         {
82 82
             $this->appendParamToken($token);
83 83
         }
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
     
93 93
     protected function appendLogicKeywords() : void
94 94
     {
95
-        if(!$this->command->supportsLogicKeywords())
95
+        if (!$this->command->supportsLogicKeywords())
96 96
         {
97 97
             return;
98 98
         }
99 99
         
100 100
         $keywords = $this->command->getLogicKeywords()->getKeywords();
101 101
         
102
-        foreach($keywords as $keyword)
102
+        foreach ($keywords as $keyword)
103 103
         {
104 104
             $this->appendLogicKeyword($keyword);
105 105
         }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         
112 112
         $type = $keyword->getType();
113 113
         
114
-        if(!empty($type))
114
+        if (!empty($type))
115 115
         {
116 116
             $this->parts[] = ' '.$this->renderTag(array('command-type'), $type);
117 117
         }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     {
131 131
         $parts = array();
132 132
         
133
-        foreach($classes as $class)
133
+        foreach ($classes as $class)
134 134
         {
135 135
             $parts[] = 'mailcode-'.$class;
136 136
         }
Please login to merge, or discard this patch.
css/index.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@
 block discarded – undo
48 48
     <body>
49 49
     	<p>
50 50
     		<?php 
51
-    		    pts('This showcases the command\'s syntax highlighting.');
52
-    		    pts(
53
-    		        'It is based on the %1$s color scheme%2$s:',
54
-    		        '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
-    		        '</a>'
56
-		        );
57
-    		?>
51
+                pts('This showcases the command\'s syntax highlighting.');
52
+                pts(
53
+                    'It is based on the %1$s color scheme%2$s:',
54
+                    '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
+                    '</a>'
56
+                );
57
+            ?>
58 58
 		</p>
59 59
 		<br>
60 60
     	<div class="commands">
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     $autoload = realpath($root.'/../vendor/autoload.php');
18 18
     
19 19
     // we need the autoloader to be present
20
-    if($autoload === false) 
20
+    if ($autoload === false) 
21 21
     {
22 22
         die('<b>ERROR:</b> Autoloader not present. Run composer update first.');
23 23
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
                     Mailcode_Factory::comment('Some comments here'),
66 66
                     Mailcode_Factory::showSnippet('snippet_name'),
67 67
                     Mailcode_Factory::showDate('DATE.VARIABLE'),
68
-                    Mailcode_Factory::if('1 + 1 == 2'),
68
+                    Mailcode_Factory::if ('1 + 1 == 2'),
69 69
                     Mailcode_Factory::ifContains('CUSTOMER.NAME', 'John'),
70 70
                     Mailcode_Factory::ifVarEquals('NUMBER', 124),
71 71
                 );
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                 
78 78
                 $commands[] = Mailcode_Factory::end();
79 79
                 
80
-                foreach($commands as $command)
80
+                foreach ($commands as $command)
81 81
                 {
82 82
                     ?>
83 83
                     	<p>
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,10 +65,12 @@
 block discarded – undo
65 65
                     Mailcode_Factory::comment('Some comments here'),
66 66
                     Mailcode_Factory::showSnippet('snippet_name'),
67 67
                     Mailcode_Factory::showDate('DATE.VARIABLE'),
68
-                    Mailcode_Factory::if('1 + 1 == 2'),
68
+                    Mailcode_Factory::if('1 + 1 == 2') {
69
+                        ,
69 70
                     Mailcode_Factory::ifContains('CUSTOMER.NAME', 'John'),
70 71
                     Mailcode_Factory::ifVarEquals('NUMBER', 124),
71 72
                 );
73
+                    }
72 74
                 
73 75
                 $and = Mailcode_Factory::elseIfVarEqualsString('STRINGVAR', 'John');
74 76
                 $and->getLogicKeywords()->appendOR('$STRINGVAR == "Steve"', "variable");
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 3 patches
Indentation   +150 added lines, -150 removed lines patch added patch discarded remove patch
@@ -61,50 +61,50 @@  discard block
 block discarded – undo
61 61
     
62 62
     const ERROR_NOT_A_SINGLE_LINES_FORMATTER = 47806;
63 63
     
64
-   /**
65
-    * @var Mailcode_Parser
66
-    */
64
+    /**
65
+     * @var Mailcode_Parser
66
+     */
67 67
     protected $parser;
68 68
     
69
-   /**
70
-    * @var Mailcode_Collection
71
-    */
69
+    /**
70
+     * @var Mailcode_Collection
71
+     */
72 72
     protected $commands;
73 73
     
74
-   /**
75
-    * @var string
76
-    */
74
+    /**
75
+     * @var string
76
+     */
77 77
     protected $originalString;
78 78
     
79
-   /**
80
-    * @var Mailcode_Collection
81
-    */
79
+    /**
80
+     * @var Mailcode_Collection
81
+     */
82 82
     protected $collection;
83 83
     
84
-   /**
85
-    * Counter for the placeholders, global for all placeholders.
86
-    * @var integer
87
-    */
84
+    /**
85
+     * Counter for the placeholders, global for all placeholders.
86
+     * @var integer
87
+     */
88 88
     private static $counter = 0;
89 89
     
90
-   /**
91
-    * @var Mailcode_Parser_Safeguard_Placeholder[]
92
-    */
90
+    /**
91
+     * @var Mailcode_Parser_Safeguard_Placeholder[]
92
+     */
93 93
     protected $placeholders;
94 94
     
95
-   /**
96
-    * @var string
97
-    */
95
+    /**
96
+     * @var string
97
+     */
98 98
     protected $delimiter = '__';
99 99
     
100
-   /**
101
-    * @var string[]|NULL
102
-    */
100
+    /**
101
+     * @var string[]|NULL
102
+     */
103 103
     protected $placeholderStrings;
104 104
     
105
-   /**
106
-    * @var Mailcode_Parser_Safeguard_Formatter
107
-    */
105
+    /**
106
+     * @var Mailcode_Parser_Safeguard_Formatter
107
+     */
108 108
     protected $formatter;
109 109
     
110 110
     public function __construct(Mailcode_Parser $parser, string $subject)
@@ -113,25 +113,25 @@  discard block
 block discarded – undo
113 113
         $this->originalString = $subject;
114 114
     }
115 115
     
116
-   /**
117
-    * Retrieves the string the safeguard was created for.
118
-    * 
119
-    * @return string
120
-    */
116
+    /**
117
+     * Retrieves the string the safeguard was created for.
118
+     * 
119
+     * @return string
120
+     */
121 121
     public function getOriginalString() : string
122 122
     {
123 123
         return $this->originalString;
124 124
     }
125 125
     
126
-   /**
127
-    * Sets the delimiter character sequence used to prepend
128
-    * and append to the placeholders.
129
-    * 
130
-    * The delimiter's default is "__" (two underscores).
131
-    * 
132
-    * @param string $delimiter
133
-    * @return Mailcode_Parser_Safeguard
134
-    */
126
+    /**
127
+     * Sets the delimiter character sequence used to prepend
128
+     * and append to the placeholders.
129
+     * 
130
+     * The delimiter's default is "__" (two underscores).
131
+     * 
132
+     * @param string $delimiter
133
+     * @return Mailcode_Parser_Safeguard
134
+     */
135 135
     public function setDelimiter(string $delimiter) : Mailcode_Parser_Safeguard
136 136
     {
137 137
         if(empty($delimiter))
@@ -153,15 +153,15 @@  discard block
 block discarded – undo
153 153
         return $this->delimiter;
154 154
     }
155 155
     
156
-   /**
157
-    * Retrieves the safe string in which all commands have been replaced
158
-    * by placeholder strings.
159
-    *
160
-    * @return string
161
-    * @throws Mailcode_Exception 
162
-    *
163
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
164
-    */
156
+    /**
157
+     * Retrieves the safe string in which all commands have been replaced
158
+     * by placeholder strings.
159
+     *
160
+     * @return string
161
+     * @throws Mailcode_Exception 
162
+     *
163
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
164
+     */
165 165
     public function makeSafe() : string
166 166
     {
167 167
         $this->requireValidCollection();
@@ -169,16 +169,16 @@  discard block
 block discarded – undo
169 169
         return $this->makeSafePartial();
170 170
     }
171 171
     
172
-   /**
173
-    * Like makeSafe(), but allows partial (invalid) commands: use this
174
-    * if the subject string may contain only part of the whole set of
175
-    * commands. 
176
-    * 
177
-    * Example: parsing a text with an opening if statement, without the 
178
-    * matching end statement.
179
-    * 
180
-    * @return string
181
-    */
172
+    /**
173
+     * Like makeSafe(), but allows partial (invalid) commands: use this
174
+     * if the subject string may contain only part of the whole set of
175
+     * commands. 
176
+     * 
177
+     * Example: parsing a text with an opening if statement, without the 
178
+     * matching end statement.
179
+     * 
180
+     * @return string
181
+     */
182 182
     public function makeSafePartial() : string
183 183
     {
184 184
         $replaces = $this->getReplaces();
@@ -216,10 +216,10 @@  discard block
 block discarded – undo
216 216
         );
217 217
     }
218 218
     
219
-   /**
220
-    * Enables the formatter that ensures that all commands that
221
-    * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
222
-    */
219
+    /**
220
+     * Enables the formatter that ensures that all commands that
221
+     * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
222
+     */
223 223
     public function selectSingleLinesFormatter() : Mailcode_Parser_Safeguard_Formatter_SingleLines
224 224
     {
225 225
         $formatter = $this->selectFormatter('SingleLines');
@@ -239,13 +239,13 @@  discard block
 block discarded – undo
239 239
         );
240 240
     }
241 241
     
242
-   /**
243
-    * Retrieves an associative array with pairs of
244
-    * [placeholder string => replacement text]. 
245
-    * 
246
-    * @param bool $highlighted
247
-    * @return string[]string
248
-    */
242
+    /**
243
+     * Retrieves an associative array with pairs of
244
+     * [placeholder string => replacement text]. 
245
+     * 
246
+     * @param bool $highlighted
247
+     * @return string[]string
248
+     */
249 249
     protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
250 250
     {
251 251
         $placeholders = $this->getPlaceholders();
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
     }
277 277
     
278 278
     
279
-   /**
280
-    * Retrieves all placeholders that have to be added to
281
-    * the subject text.
282
-    * 
283
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
284
-    */
279
+    /**
280
+     * Retrieves all placeholders that have to be added to
281
+     * the subject text.
282
+     * 
283
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
284
+     */
285 285
     public function getPlaceholders()
286 286
     {
287 287
         if(isset($this->placeholders))
@@ -336,17 +336,17 @@  discard block
 block discarded – undo
336 336
         return str_replace($placeholderStrings, array_values($replaces), $string);
337 337
     }
338 338
     
339
-   /**
340
-    * Makes the string whole again after transforming or filtering it,
341
-    * by replacing the command placeholders with the original commands.
342
-    *
343
-    * @param string $string
344
-    * @return string
345
-    * @throws Mailcode_Exception
346
-    *
347
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
348
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
349
-    */
339
+    /**
340
+     * Makes the string whole again after transforming or filtering it,
341
+     * by replacing the command placeholders with the original commands.
342
+     *
343
+     * @param string $string
344
+     * @return string
345
+     * @throws Mailcode_Exception
346
+     *
347
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
348
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
349
+     */
350 350
     public function makeWhole(string $string) : string
351 351
     {
352 352
         return $this->restore(
@@ -356,15 +356,15 @@  discard block
 block discarded – undo
356 356
         );
357 357
     }
358 358
     
359
-   /**
360
-    * Like `makeWhole()`, but ignores missing command placeholders.
361
-    *
362
-    * @param string $string
363
-    * @return string
364
-    * @throws Mailcode_Exception
365
-    *
366
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
367
-    */
359
+    /**
360
+     * Like `makeWhole()`, but ignores missing command placeholders.
361
+     *
362
+     * @param string $string
363
+     * @return string
364
+     * @throws Mailcode_Exception
365
+     *
366
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
367
+     */
368 368
     public function makeWholePartial(string $string) : string
369 369
     {
370 370
         return $this->restore(
@@ -374,20 +374,20 @@  discard block
 block discarded – undo
374 374
         );
375 375
     }
376 376
 
377
-   /**
378
-    * Like `makeWhole()`, but replaces the commands with a syntax
379
-    * highlighted version, meant for human readable texts only.
380
-    * 
381
-    * Note: the commands lose their functionality (They cannot be 
382
-    * parsed from that string again).
383
-    *
384
-    * @param string $string
385
-    * @return string
386
-    * @throws Mailcode_Exception
387
-    *
388
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
389
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
390
-    */
377
+    /**
378
+     * Like `makeWhole()`, but replaces the commands with a syntax
379
+     * highlighted version, meant for human readable texts only.
380
+     * 
381
+     * Note: the commands lose their functionality (They cannot be 
382
+     * parsed from that string again).
383
+     *
384
+     * @param string $string
385
+     * @return string
386
+     * @throws Mailcode_Exception
387
+     *
388
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
389
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
390
+     */
391 391
     public function makeHighlighted(string $string) : string
392 392
     {
393 393
         return $this->restore(
@@ -397,15 +397,15 @@  discard block
 block discarded – undo
397 397
         );
398 398
     }
399 399
     
400
-   /**
401
-    * Like `makeHighlighted()`, but ignores missing command placeholders.
402
-    * 
403
-    * @param string $string
404
-    * @return string
405
-    * @throws Mailcode_Exception
406
-    *
407
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
408
-    */
400
+    /**
401
+     * Like `makeHighlighted()`, but ignores missing command placeholders.
402
+     * 
403
+     * @param string $string
404
+     * @return string
405
+     * @throws Mailcode_Exception
406
+     *
407
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
408
+     */
409 409
     public function makeHighlightedPartial(string $string) : string
410 410
     {
411 411
         return $this->restore(
@@ -415,11 +415,11 @@  discard block
 block discarded – undo
415 415
         );
416 416
     }
417 417
     
418
-   /**
419
-    * Retrieves the commands collection contained in the string.
420
-    * 
421
-    * @return Mailcode_Collection
422
-    */
418
+    /**
419
+     * Retrieves the commands collection contained in the string.
420
+     * 
421
+     * @return Mailcode_Collection
422
+     */
423 423
     public function getCollection() : Mailcode_Collection
424 424
     {
425 425
         if(isset($this->collection))
@@ -437,11 +437,11 @@  discard block
 block discarded – undo
437 437
         return $this->getCollection()->isValid();
438 438
     }
439 439
     
440
-   /**
441
-    * @throws Mailcode_Exception
442
-    * 
443
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
444
-    */
440
+    /**
441
+     * @throws Mailcode_Exception
442
+     * 
443
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
444
+     */
445 445
     protected function requireValidCollection() : void
446 446
     {
447 447
         if($this->getCollection()->isValid())
@@ -460,11 +460,11 @@  discard block
 block discarded – undo
460 460
         );
461 461
     }
462 462
     
463
-   /**
464
-    * Retrieves a list of all placeholder IDs used in the text.
465
-    * 
466
-    * @return string[]
467
-    */
463
+    /**
464
+     * Retrieves a list of all placeholder IDs used in the text.
465
+     * 
466
+     * @return string[]
467
+     */
468 468
     public function getPlaceholderStrings() : array
469 469
     {
470 470
         if(is_array($this->placeholderStrings))
@@ -491,13 +491,13 @@  discard block
 block discarded – undo
491 491
         return in_array($subject, $ids);
492 492
     }
493 493
     
494
-   /**
495
-    * Retrieves a placeholder instance by its ID.
496
-    * 
497
-    * @param int $id
498
-    * @throws Mailcode_Exception If the placeholder was not found.
499
-    * @return Mailcode_Parser_Safeguard_Placeholder
500
-    */
494
+    /**
495
+     * Retrieves a placeholder instance by its ID.
496
+     * 
497
+     * @param int $id
498
+     * @throws Mailcode_Exception If the placeholder was not found.
499
+     * @return Mailcode_Parser_Safeguard_Placeholder
500
+     */
501 501
     public function getPlaceholderByID(int $id) : Mailcode_Parser_Safeguard_Placeholder
502 502
     {
503 503
         $placeholders = $this->getPlaceholders();
@@ -520,13 +520,13 @@  discard block
 block discarded – undo
520 520
         );
521 521
     }
522 522
     
523
-   /**
524
-    * Retrieves a placeholder instance by its replacement text.
525
-    * 
526
-    * @param string $string
527
-    * @throws Mailcode_Exception
528
-    * @return Mailcode_Parser_Safeguard_Placeholder
529
-    */
523
+    /**
524
+     * Retrieves a placeholder instance by its replacement text.
525
+     * 
526
+     * @param string $string
527
+     * @throws Mailcode_Exception
528
+     * @return Mailcode_Parser_Safeguard_Placeholder
529
+     */
530 530
     public function getPlaceholderByString(string $string) : Mailcode_Parser_Safeguard_Placeholder
531 531
     {
532 532
         $placeholders = $this->getPlaceholders();
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     */
135 135
     public function setDelimiter(string $delimiter) : Mailcode_Parser_Safeguard
136 136
     {
137
-        if(empty($delimiter))
137
+        if (empty($delimiter))
138 138
         {
139 139
             throw new Mailcode_Exception(
140 140
                 'Empty delimiter',
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $safe = str_replace(array_values($replaces), array_keys($replaces), $this->originalString);
187 187
 
188 188
         // If a formatter has been selected, let it modify the string.
189
-        if(isset($this->formatter))
189
+        if (isset($this->formatter))
190 190
         {
191 191
             $safe = $this->formatter->format($safe);
192 192
         }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     {
199 199
         $class = 'Mailcode\Mailcode_Parser_Safeguard_Formatter_'.$formatterID;
200 200
         
201
-        if(class_exists($class))
201
+        if (class_exists($class))
202 202
         {
203 203
             $this->formatter = new $class($this);
204 204
             
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     {
225 225
         $formatter = $this->selectFormatter('SingleLines');
226 226
         
227
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
227
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
228 228
         {
229 229
             return $formatter;
230 230
         }
@@ -246,21 +246,21 @@  discard block
 block discarded – undo
246 246
     * @param bool $highlighted
247 247
     * @return string[]string
248 248
     */
249
-    protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
249
+    protected function getReplaces(bool $highlighted = false, bool $normalize = false) : array
250 250
     {
251 251
         $placeholders = $this->getPlaceholders();
252 252
         
253 253
         $replaces = array();
254 254
         
255
-        foreach($placeholders as $placeholder)
255
+        foreach ($placeholders as $placeholder)
256 256
         {
257 257
             $replace = '';
258 258
             
259
-            if($highlighted)
259
+            if ($highlighted)
260 260
             {
261 261
                 $replace = $placeholder->getHighlightedText();
262 262
             }
263
-            else if($normalize)
263
+            else if ($normalize)
264 264
             {
265 265
                 $replace = $placeholder->getNormalizedText();
266 266
             }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     */
285 285
     public function getPlaceholders()
286 286
     {
287
-        if(isset($this->placeholders))
287
+        if (isset($this->placeholders))
288 288
         {
289 289
             return $this->placeholders;
290 290
         }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
         
294 294
         $cmds = $this->getCollection()->getGroupedByHash();
295 295
         
296
-        foreach($cmds as $command)
296
+        foreach ($cmds as $command)
297 297
         {
298 298
             self::$counter++;
299 299
             
@@ -307,9 +307,9 @@  discard block
 block discarded – undo
307 307
         return $this->placeholders;
308 308
     }
309 309
     
310
-    protected function restore(string $string, bool $partial=false, bool $highlighted=false) : string
310
+    protected function restore(string $string, bool $partial = false, bool $highlighted = false) : string
311 311
     {
312
-        if(!$partial)
312
+        if (!$partial)
313 313
         {
314 314
             $this->requireValidCollection();
315 315
         }
@@ -318,9 +318,9 @@  discard block
 block discarded – undo
318 318
         
319 319
         $placeholderStrings = array_keys($replaces);
320 320
         
321
-        foreach($placeholderStrings as $search)
321
+        foreach ($placeholderStrings as $search)
322 322
         {
323
-            if(!$partial && !strstr($string, $search))
323
+            if (!$partial && !strstr($string, $search))
324 324
             {
325 325
                 throw new Mailcode_Exception(
326 326
                     'Command placeholder not found',
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     */
423 423
     public function getCollection() : Mailcode_Collection
424 424
     {
425
-        if(isset($this->collection))
425
+        if (isset($this->collection))
426 426
         {
427 427
             return $this->collection;
428 428
         }
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     */
445 445
     protected function requireValidCollection() : void
446 446
     {
447
-        if($this->getCollection()->isValid())
447
+        if ($this->getCollection()->isValid())
448 448
         {
449 449
             return;
450 450
         }
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
     */
468 468
     public function getPlaceholderStrings() : array
469 469
     {
470
-        if(is_array($this->placeholderStrings))
470
+        if (is_array($this->placeholderStrings))
471 471
         {
472 472
             return $this->placeholderStrings;
473 473
         }
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         
477 477
         $this->placeholderStrings = array();
478 478
         
479
-        foreach($placeholders as $placeholder)
479
+        foreach ($placeholders as $placeholder)
480 480
         {
481 481
             $this->placeholderStrings[] = $placeholder->getReplacementText();
482 482
         }
@@ -502,9 +502,9 @@  discard block
 block discarded – undo
502 502
     {
503 503
         $placeholders = $this->getPlaceholders();
504 504
         
505
-        foreach($placeholders as $placeholder)
505
+        foreach ($placeholders as $placeholder)
506 506
         {
507
-            if($placeholder->getID() === $id)
507
+            if ($placeholder->getID() === $id)
508 508
             {
509 509
                 return $placeholder;
510 510
             }
@@ -531,9 +531,9 @@  discard block
 block discarded – undo
531 531
     {
532 532
         $placeholders = $this->getPlaceholders();
533 533
         
534
-        foreach($placeholders as $placeholder)
534
+        foreach ($placeholders as $placeholder)
535 535
         {
536
-            if($placeholder->getReplacementText() === $string)
536
+            if ($placeholder->getReplacementText() === $string)
537 537
             {
538 538
                 return $placeholder;
539 539
             }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -259,12 +259,10 @@
 block discarded – undo
259 259
             if($highlighted)
260 260
             {
261 261
                 $replace = $placeholder->getHighlightedText();
262
-            }
263
-            else if($normalize)
262
+            } else if($normalize)
264 263
             {
265 264
                 $replace = $placeholder->getNormalizedText();
266
-            }
267
-            else
265
+            } else
268 266
             {
269 267
                 $replace = $placeholder->getOriginalText();
270 268
             }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/If.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,37 +32,37 @@
 block discarded – undo
32 32
     
33 33
     protected function translateBody(Mailcode_Commands_IfBase $command) : string
34 34
     {
35
-        if($command instanceof Mailcode_Commands_Command_If_Command)
35
+        if ($command instanceof Mailcode_Commands_Command_If_Command)
36 36
         {
37 37
             return $this->translateCommand($command);
38 38
         }
39 39
         
40
-        if($command instanceof Mailcode_Commands_Command_If_Variable)
40
+        if ($command instanceof Mailcode_Commands_Command_If_Variable)
41 41
         {
42 42
             return $this->translateVariable($command);
43 43
         }
44 44
         
45
-        if($command instanceof Mailcode_Commands_Command_If_Contains)
45
+        if ($command instanceof Mailcode_Commands_Command_If_Contains)
46 46
         {
47 47
             return $this->translateContains($command);
48 48
         }
49 49
         
50
-        if($command instanceof Mailcode_Commands_Command_If_Empty)
50
+        if ($command instanceof Mailcode_Commands_Command_If_Empty)
51 51
         {
52 52
             return $this->translateEmpty($command);
53 53
         }
54 54
         
55
-        if($command instanceof Mailcode_Commands_Command_If_NotEmpty)
55
+        if ($command instanceof Mailcode_Commands_Command_If_NotEmpty)
56 56
         {
57 57
             return $this->translateNotEmpty($command);
58 58
         }
59 59
         
60
-        if($command instanceof Mailcode_Commands_Command_If_BeginsWith)
60
+        if ($command instanceof Mailcode_Commands_Command_If_BeginsWith)
61 61
         {
62 62
             return $this->translateBeginsWith($command);
63 63
         }
64 64
         
65
-        if($command instanceof Mailcode_Commands_Command_If_EndsWith)
65
+        if ($command instanceof Mailcode_Commands_Command_If_EndsWith)
66 66
         {
67 67
             return $this->translateEndsWith($command);
68 68
         }
Please login to merge, or discard this patch.