Passed
Push — master ( 90bef3...b87bd2 )
by Sebastian
11:38
created
src/Mailcode/Parser/Statement/Tokenizer/Token/Operand.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
         return $this->getSign();
31 31
     }
32 32
     
33
-   /**
34
-    * Retrieves all known comparison operator signs.
35
-    * @return string[]
36
-    */
33
+    /**
34
+     * Retrieves all known comparison operator signs.
35
+     * @return string[]
36
+     */
37 37
     public static function getComparisonSigns() : array
38 38
     {
39 39
         return array(
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
         );
47 47
     }
48 48
     
49
-   /**
50
-    * Retrieves all known arithmetic operator signs.
51
-    * @return string[]
52
-    */
49
+    /**
50
+     * Retrieves all known arithmetic operator signs.
51
+     * @return string[]
52
+     */
53 53
     public static function getArithmeticSigns() : array
54 54
     {
55 55
         return array(
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
         );
61 61
     }
62 62
     
63
-   /**
64
-    * Whether the operator is comparison related (equals, not equals, smaller, greater...).
65
-    *  
66
-    * @return bool
67
-    */
63
+    /**
64
+     * Whether the operator is comparison related (equals, not equals, smaller, greater...).
65
+     *  
66
+     * @return bool
67
+     */
68 68
     public function isComparator() : bool
69 69
     {
70 70
         return 
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
         $this->isSmallerOrEquals();
77 77
     }
78 78
     
79
-   /**
80
-    * Whether the operator is calculation related (minus, plus, divide, multiply).
81
-    * 
82
-    * @return bool
83
-    */
79
+    /**
80
+     * Whether the operator is calculation related (minus, plus, divide, multiply).
81
+     * 
82
+     * @return bool
83
+     */
84 84
     public function isCalculator() : bool
85 85
     {
86 86
         return 
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/For.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,19 +27,19 @@
 block discarded – undo
27 27
     const VALIDATION_WRONG_KEYWORD = 49702;
28 28
     const VALIDATION_VARIABLE_NAME_IS_THE_SAME = 49703;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
32
+     */
33 33
     private $loopVar;
34 34
     
35
-   /**
36
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
-    */
35
+    /**
36
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
+     */
38 38
     private $sourceVar;
39 39
     
40
-   /**
41
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
42
-    */
40
+    /**
41
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
42
+     */
43 43
     private $keyword;
44 44
     
45 45
     public function getName() : string
Please login to merge, or discard this patch.
src/Mailcode/Factory.php 1 patch
Indentation   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
     const ERROR_INVALID_COMMAND_CREATED = 50001;
24 24
     const ERROR_UNEXPECTED_COMMAND_TYPE = 50002;
25 25
 
26
-   /**
27
-    * @var Mailcode_Factory_CommandSets
28
-    */
26
+    /**
27
+     * @var Mailcode_Factory_CommandSets
28
+     */
29 29
     private static $commandSets;
30 30
     
31
-   /**
32
-    * Creates a ShowVariable command.
33
-    * 
34
-    * @param string $variableName A variable name, with or without the $ sign prepended.
35
-    * @return Mailcode_Commands_Command_ShowVariable
36
-    */
31
+    /**
32
+     * Creates a ShowVariable command.
33
+     * 
34
+     * @param string $variableName A variable name, with or without the $ sign prepended.
35
+     * @return Mailcode_Commands_Command_ShowVariable
36
+     */
37 37
     public static function showVar(string $variableName) : Mailcode_Commands_Command_ShowVariable
38 38
     {
39 39
         return self::$commandSets->show()->showVar($variableName);
@@ -52,41 +52,41 @@  discard block
 block discarded – undo
52 52
         return self::$commandSets->show()->showDate($variableName, $formatString);
53 53
     }
54 54
 
55
-   /**
56
-    * Creates a ShowSnippet command.
57
-    *
58
-    * @param string $snippetName A snippet name, with or without the $ sign prepended.
59
-    * @return Mailcode_Commands_Command_ShowSnippet
60
-    */
55
+    /**
56
+     * Creates a ShowSnippet command.
57
+     *
58
+     * @param string $snippetName A snippet name, with or without the $ sign prepended.
59
+     * @return Mailcode_Commands_Command_ShowSnippet
60
+     */
61 61
     public static function showSnippet(string $snippetName) : Mailcode_Commands_Command_ShowSnippet
62 62
     {
63 63
         return self::$commandSets->show()->showSnippet($snippetName);
64 64
     }
65 65
     
66
-   /**
67
-    * Creates a SetVariable command.
68
-    * 
69
-    * @param string $variableName A variable name, with or without the $ sign prepended.
70
-    * @param string $value
71
-    * @param bool $quoteValue Whether to treat the value as a string literal, and add quotes to it.
72
-    * @return Mailcode_Commands_Command_SetVariable
73
-    * @throws Mailcode_Factory_Exception
74
-    * 
75
-    * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED
76
-    */
66
+    /**
67
+     * Creates a SetVariable command.
68
+     * 
69
+     * @param string $variableName A variable name, with or without the $ sign prepended.
70
+     * @param string $value
71
+     * @param bool $quoteValue Whether to treat the value as a string literal, and add quotes to it.
72
+     * @return Mailcode_Commands_Command_SetVariable
73
+     * @throws Mailcode_Factory_Exception
74
+     * 
75
+     * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED
76
+     */
77 77
     public static function setVar(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable
78 78
     {
79 79
         return self::$commandSets->set()->setVar($variableName, $value, $quoteValue);
80 80
     }
81 81
     
82
-   /**
83
-    * Like setVar(), but treats the value as a string literal
84
-    * and automatically adds quotes to it.
85
-    * 
86
-    * @param string $variableName
87
-    * @param string $value
88
-    * @return Mailcode_Commands_Command_SetVariable
89
-    */
82
+    /**
83
+     * Like setVar(), but treats the value as a string literal
84
+     * and automatically adds quotes to it.
85
+     * 
86
+     * @param string $variableName
87
+     * @param string $value
88
+     * @return Mailcode_Commands_Command_SetVariable
89
+     */
90 90
     public static function setVarString(string $variableName, string $value) : Mailcode_Commands_Command_SetVariable
91 91
     {
92 92
         return self::$commandSets->set()->setVar($variableName, $value, true);
@@ -212,14 +212,14 @@  discard block
 block discarded – undo
212 212
         return self::$commandSets->if()->ifContains($variable, array($search), $caseInsensitive);
213 213
     }
214 214
     
215
-   /**
216
-    * Creates if contains command, with several search terms.
217
-    * 
218
-    * @param string $variable
219
-    * @param string[] $searchTerms List of search terms. Do not add surrounding quotes.
220
-    * @param bool $caseInsensitive
221
-    * @return Mailcode_Commands_Command_If_Contains
222
-    */
215
+    /**
216
+     * Creates if contains command, with several search terms.
217
+     * 
218
+     * @param string $variable
219
+     * @param string[] $searchTerms List of search terms. Do not add surrounding quotes.
220
+     * @param bool $caseInsensitive
221
+     * @return Mailcode_Commands_Command_If_Contains
222
+     */
223 223
     public static function ifContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains
224 224
     {
225 225
         return self::$commandSets->if()->ifContains($variable, $searchTerms, $caseInsensitive);
@@ -230,14 +230,14 @@  discard block
 block discarded – undo
230 230
         return self::$commandSets->elseIf()->elseIfContains($variable, array($search), $caseInsensitive);
231 231
     }
232 232
     
233
-   /**
234
-    * Creates else if contains command, with several search terms.
235
-    * 
236
-    * @param string $variable
237
-    * @param string[] $searchTerms List of search terms. Do not add surrounding quotes.
238
-    * @param bool $caseInsensitive
239
-    * @return Mailcode_Commands_Command_ElseIf_Contains
240
-    */
233
+    /**
234
+     * Creates else if contains command, with several search terms.
235
+     * 
236
+     * @param string $variable
237
+     * @param string[] $searchTerms List of search terms. Do not add surrounding quotes.
238
+     * @param bool $caseInsensitive
239
+     * @return Mailcode_Commands_Command_ElseIf_Contains
240
+     */
241 241
     public static function elseIfContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains
242 242
     {
243 243
         return self::$commandSets->elseIf()->elseIfContains($variable, $searchTerms, $caseInsensitive);
@@ -258,34 +258,34 @@  discard block
 block discarded – undo
258 258
         return self::$commandSets->misc()->for($sourceVariable, $loopVariable);
259 259
     }
260 260
     
261
-   /**
262
-    * Creates a renderer instance, which can be used to easily
263
-    * create and convert commands to strings.
264
-    * 
265
-    * @return Mailcode_Renderer
266
-    */
261
+    /**
262
+     * Creates a renderer instance, which can be used to easily
263
+     * create and convert commands to strings.
264
+     * 
265
+     * @return Mailcode_Renderer
266
+     */
267 267
     public static function createRenderer() : Mailcode_Renderer
268 268
     {
269 269
         return new Mailcode_Renderer();
270 270
     }
271 271
     
272
-   /**
273
-    * Creates a printer instance, which works like the renderer,
274
-    * but outputs the generated strings to standard output.
275
-    * 
276
-    * @return Mailcode_Printer
277
-    */
272
+    /**
273
+     * Creates a printer instance, which works like the renderer,
274
+     * but outputs the generated strings to standard output.
275
+     * 
276
+     * @return Mailcode_Printer
277
+     */
278 278
     public static function createPrinter() : Mailcode_Printer
279 279
     {
280 280
         return new Mailcode_Printer();
281 281
     }
282 282
     
283
-   /**
284
-    * Gets/creates the global instance of the date format info
285
-    * class, used to handle date formatting aspects.
286
-    * 
287
-    * @return Mailcode_Date_FormatInfo
288
-    */
283
+    /**
284
+     * Gets/creates the global instance of the date format info
285
+     * class, used to handle date formatting aspects.
286
+     * 
287
+     * @return Mailcode_Date_FormatInfo
288
+     */
289 289
     public static function createDateInfo() : Mailcode_Date_FormatInfo
290 290
     {
291 291
         return Mailcode_Date_FormatInfo::getInstance();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Restorer.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -22,24 +22,24 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class Mailcode_Parser_Safeguard_Restorer
24 24
 {
25
-   /**
26
-    * @var Mailcode_Parser_Safeguard
27
-    */
25
+    /**
26
+     * @var Mailcode_Parser_Safeguard
27
+     */
28 28
     private $safeguard;
29 29
     
30
-   /**
31
-    * @var bool
32
-    */
30
+    /**
31
+     * @var bool
32
+     */
33 33
     private $highlighted;
34 34
     
35
-   /**
36
-    * @var bool
37
-    */
35
+    /**
36
+     * @var bool
37
+     */
38 38
     private $normalize;
39 39
     
40
-   /**
41
-    * @var array<string,string>
42
-    */
40
+    /**
41
+     * @var array<string,string>
42
+     */
43 43
     private $replaces = array();
44 44
     
45 45
     public function __construct(Mailcode_Parser_Safeguard $safeguard, bool $highlighted, bool $normalize)
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
         $this->normalize = $normalize;
50 50
     }
51 51
     
52
-   /**
53
-    * @return array<string,string>
54
-    */
52
+    /**
53
+     * @return array<string,string>
54
+     */
55 55
     public function getReplaces() : array
56 56
     {
57 57
         $placeholders = $this->safeguard->getPlaceholders();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 1 patch
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();
@@ -233,10 +233,10 @@  discard block
 block discarded – undo
233 233
         throw $this->exceptionWrongFormatter(Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting::class);
234 234
     }
235 235
     
236
-   /**
237
-    * Enables the formatter that ensures that all commands that
238
-    * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
239
-    */
236
+    /**
237
+     * Enables the formatter that ensures that all commands that
238
+     * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
239
+     */
240 240
     public function selectSingleLinesFormatter() : Mailcode_Parser_Safeguard_Formatter_SingleLines
241 241
     {
242 242
         $formatter = $this->selectFormatter('SingleLines');
@@ -261,25 +261,25 @@  discard block
 block discarded – undo
261 261
         );
262 262
     }
263 263
     
264
-   /**
265
-    * Retrieves an associative array with pairs of
266
-    * [placeholder string => replacement text]. 
267
-    * 
268
-    * @param bool $highlighted
269
-    * @return string[]string
270
-    */
264
+    /**
265
+     * Retrieves an associative array with pairs of
266
+     * [placeholder string => replacement text]. 
267
+     * 
268
+     * @param bool $highlighted
269
+     * @return string[]string
270
+     */
271 271
     protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
272 272
     {
273 273
         $restorer = new Mailcode_Parser_Safeguard_Restorer($this, $highlighted, $normalize);
274 274
         return $restorer->getReplaces();
275 275
     }
276 276
     
277
-   /**
278
-    * Retrieves all placeholders that have to be added to
279
-    * the subject text.
280
-    * 
281
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
282
-    */
277
+    /**
278
+     * Retrieves all placeholders that have to be added to
279
+     * the subject text.
280
+     * 
281
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
282
+     */
283 283
     public function getPlaceholders()
284 284
     {
285 285
         if(isset($this->placeholders))
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
         return str_replace($placeholderStrings, array_values($replaces), $string);
335 335
     }
336 336
     
337
-   /**
338
-    * Makes the string whole again after transforming or filtering it,
339
-    * by replacing the command placeholders with the original commands.
340
-    *
341
-    * @param string $string
342
-    * @return string
343
-    * @throws Mailcode_Exception
344
-    *
345
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
346
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
347
-    */
337
+    /**
338
+     * Makes the string whole again after transforming or filtering it,
339
+     * by replacing the command placeholders with the original commands.
340
+     *
341
+     * @param string $string
342
+     * @return string
343
+     * @throws Mailcode_Exception
344
+     *
345
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
346
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
347
+     */
348 348
     public function makeWhole(string $string) : string
349 349
     {
350 350
         return $this->restore(
@@ -354,15 +354,15 @@  discard block
 block discarded – undo
354 354
         );
355 355
     }
356 356
     
357
-   /**
358
-    * Like `makeWhole()`, but ignores missing command placeholders.
359
-    *
360
-    * @param string $string
361
-    * @return string
362
-    * @throws Mailcode_Exception
363
-    *
364
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
365
-    */
357
+    /**
358
+     * Like `makeWhole()`, but ignores missing command placeholders.
359
+     *
360
+     * @param string $string
361
+     * @return string
362
+     * @throws Mailcode_Exception
363
+     *
364
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
365
+     */
366 366
     public function makeWholePartial(string $string) : string
367 367
     {
368 368
         return $this->restore(
@@ -372,20 +372,20 @@  discard block
 block discarded – undo
372 372
         );
373 373
     }
374 374
 
375
-   /**
376
-    * Like `makeWhole()`, but replaces the commands with a syntax
377
-    * highlighted version, meant for human readable texts only.
378
-    * 
379
-    * Note: the commands lose their functionality (They cannot be 
380
-    * parsed from that string again).
381
-    *
382
-    * @param string $string
383
-    * @return string
384
-    * @throws Mailcode_Exception
385
-    *
386
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
387
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
388
-    */
375
+    /**
376
+     * Like `makeWhole()`, but replaces the commands with a syntax
377
+     * highlighted version, meant for human readable texts only.
378
+     * 
379
+     * Note: the commands lose their functionality (They cannot be 
380
+     * parsed from that string again).
381
+     *
382
+     * @param string $string
383
+     * @return string
384
+     * @throws Mailcode_Exception
385
+     *
386
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
387
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
388
+     */
389 389
     public function makeHighlighted(string $string) : string
390 390
     {
391 391
         return $this->restore(
@@ -395,15 +395,15 @@  discard block
 block discarded – undo
395 395
         );
396 396
     }
397 397
     
398
-   /**
399
-    * Like `makeHighlighted()`, but ignores missing command placeholders.
400
-    * 
401
-    * @param string $string
402
-    * @return string
403
-    * @throws Mailcode_Exception
404
-    *
405
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
406
-    */
398
+    /**
399
+     * Like `makeHighlighted()`, but ignores missing command placeholders.
400
+     * 
401
+     * @param string $string
402
+     * @return string
403
+     * @throws Mailcode_Exception
404
+     *
405
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
406
+     */
407 407
     public function makeHighlightedPartial(string $string) : string
408 408
     {
409 409
         return $this->restore(
@@ -413,11 +413,11 @@  discard block
 block discarded – undo
413 413
         );
414 414
     }
415 415
     
416
-   /**
417
-    * Retrieves the commands collection contained in the string.
418
-    * 
419
-    * @return Mailcode_Collection
420
-    */
416
+    /**
417
+     * Retrieves the commands collection contained in the string.
418
+     * 
419
+     * @return Mailcode_Collection
420
+     */
421 421
     public function getCollection() : Mailcode_Collection
422 422
     {
423 423
         if(isset($this->collection))
@@ -435,11 +435,11 @@  discard block
 block discarded – undo
435 435
         return $this->getCollection()->isValid();
436 436
     }
437 437
     
438
-   /**
439
-    * @throws Mailcode_Exception
440
-    * 
441
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
442
-    */
438
+    /**
439
+     * @throws Mailcode_Exception
440
+     * 
441
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
442
+     */
443 443
     protected function requireValidCollection() : void
444 444
     {
445 445
         if($this->getCollection()->isValid())
@@ -458,11 +458,11 @@  discard block
 block discarded – undo
458 458
         );
459 459
     }
460 460
     
461
-   /**
462
-    * Retrieves a list of all placeholder IDs used in the text.
463
-    * 
464
-    * @return string[]
465
-    */
461
+    /**
462
+     * Retrieves a list of all placeholder IDs used in the text.
463
+     * 
464
+     * @return string[]
465
+     */
466 466
     public function getPlaceholderStrings() : array
467 467
     {
468 468
         if(is_array($this->placeholderStrings))
@@ -489,13 +489,13 @@  discard block
 block discarded – undo
489 489
         return in_array($subject, $ids);
490 490
     }
491 491
     
492
-   /**
493
-    * Retrieves a placeholder instance by its ID.
494
-    * 
495
-    * @param int $id
496
-    * @throws Mailcode_Exception If the placeholder was not found.
497
-    * @return Mailcode_Parser_Safeguard_Placeholder
498
-    */
492
+    /**
493
+     * Retrieves a placeholder instance by its ID.
494
+     * 
495
+     * @param int $id
496
+     * @throws Mailcode_Exception If the placeholder was not found.
497
+     * @return Mailcode_Parser_Safeguard_Placeholder
498
+     */
499 499
     public function getPlaceholderByID(int $id) : Mailcode_Parser_Safeguard_Placeholder
500 500
     {
501 501
         $placeholders = $this->getPlaceholders();
@@ -518,13 +518,13 @@  discard block
 block discarded – undo
518 518
         );
519 519
     }
520 520
     
521
-   /**
522
-    * Retrieves a placeholder instance by its replacement text.
523
-    * 
524
-    * @param string $string
525
-    * @throws Mailcode_Exception
526
-    * @return Mailcode_Parser_Safeguard_Placeholder
527
-    */
521
+    /**
522
+     * Retrieves a placeholder instance by its replacement text.
523
+     * 
524
+     * @param string $string
525
+     * @throws Mailcode_Exception
526
+     * @return Mailcode_Parser_Safeguard_Placeholder
527
+     */
528 528
     public function getPlaceholderByString(string $string) : Mailcode_Parser_Safeguard_Placeholder
529 529
     {
530 530
         $placeholders = $this->getPlaceholders();
Please login to merge, or discard this patch.