@@ -61,50 +61,50 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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(); |
@@ -25,24 +25,24 @@ discard block |
||
25 | 25 | { |
26 | 26 | const ERROR_PLACEHOLDER_TOO_LONG = 47901; |
27 | 27 | |
28 | - /** |
|
29 | - * @var int |
|
30 | - */ |
|
28 | + /** |
|
29 | + * @var int |
|
30 | + */ |
|
31 | 31 | protected $id; |
32 | 32 | |
33 | - /** |
|
34 | - * @var Mailcode_Parser_Safeguard |
|
35 | - */ |
|
33 | + /** |
|
34 | + * @var Mailcode_Parser_Safeguard |
|
35 | + */ |
|
36 | 36 | protected $safeguard; |
37 | 37 | |
38 | - /** |
|
39 | - * @var Mailcode_Commands_Command |
|
40 | - */ |
|
38 | + /** |
|
39 | + * @var Mailcode_Commands_Command |
|
40 | + */ |
|
41 | 41 | protected $command; |
42 | 42 | |
43 | - /** |
|
44 | - * @var string |
|
45 | - */ |
|
43 | + /** |
|
44 | + * @var string |
|
45 | + */ |
|
46 | 46 | protected $replacement = ''; |
47 | 47 | |
48 | 48 | public function __construct(int $id, Mailcode_Commands_Command $command, Mailcode_Parser_Safeguard $safeguard) |
@@ -115,18 +115,18 @@ discard block |
||
115 | 115 | return $this->command; |
116 | 116 | } |
117 | 117 | |
118 | - /** |
|
119 | - * Serializes the placeholder's information into |
|
120 | - * an array with the following keys: |
|
121 | - * |
|
122 | - * - originalText |
|
123 | - * - replacementText |
|
124 | - * - normalizedText |
|
125 | - * - length |
|
126 | - * - id |
|
127 | - * |
|
128 | - * @return array<string,string|integer> |
|
129 | - */ |
|
118 | + /** |
|
119 | + * Serializes the placeholder's information into |
|
120 | + * an array with the following keys: |
|
121 | + * |
|
122 | + * - originalText |
|
123 | + * - replacementText |
|
124 | + * - normalizedText |
|
125 | + * - length |
|
126 | + * - id |
|
127 | + * |
|
128 | + * @return array<string,string|integer> |
|
129 | + */ |
|
130 | 130 | public function serialize() : array |
131 | 131 | { |
132 | 132 | return array( |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | */ |
29 | 29 | class Mailcode_Parser_Statement_Validator |
30 | 30 | { |
31 | - /** |
|
32 | - * @var Mailcode_Parser_Statement |
|
33 | - */ |
|
31 | + /** |
|
32 | + * @var Mailcode_Parser_Statement |
|
33 | + */ |
|
34 | 34 | private $statement; |
35 | 35 | |
36 | 36 | public function __construct(Mailcode_Parser_Statement $statement) |
@@ -38,12 +38,12 @@ discard block |
||
38 | 38 | $this->statement = $statement; |
39 | 39 | } |
40 | 40 | |
41 | - /** |
|
42 | - * Creates a variable validator: checks whether a single |
|
43 | - * variable token is present in the parameters. |
|
44 | - * |
|
45 | - * @return Mailcode_Parser_Statement_Validator_Type_Variable |
|
46 | - */ |
|
41 | + /** |
|
42 | + * Creates a variable validator: checks whether a single |
|
43 | + * variable token is present in the parameters. |
|
44 | + * |
|
45 | + * @return Mailcode_Parser_Statement_Validator_Type_Variable |
|
46 | + */ |
|
47 | 47 | public function createVariable() : Mailcode_Parser_Statement_Validator_Type_Variable |
48 | 48 | { |
49 | 49 | $validate = new Mailcode_Parser_Statement_Validator_Type_Variable($this->statement); |
@@ -51,13 +51,13 @@ discard block |
||
51 | 51 | return $validate; |
52 | 52 | } |
53 | 53 | |
54 | - /** |
|
55 | - * Creates a keyword validator: checks whether a single |
|
56 | - * keyword token is present in the parameters. |
|
57 | - * |
|
58 | - * @param string $keywordName |
|
59 | - * @return Mailcode_Parser_Statement_Validator_Type_Keyword |
|
60 | - */ |
|
54 | + /** |
|
55 | + * Creates a keyword validator: checks whether a single |
|
56 | + * keyword token is present in the parameters. |
|
57 | + * |
|
58 | + * @param string $keywordName |
|
59 | + * @return Mailcode_Parser_Statement_Validator_Type_Keyword |
|
60 | + */ |
|
61 | 61 | public function createKeyword(string $keywordName) : Mailcode_Parser_Statement_Validator_Type_Keyword |
62 | 62 | { |
63 | 63 | $validate = new Mailcode_Parser_Statement_Validator_Type_Keyword( |
@@ -22,53 +22,53 @@ discard block |
||
22 | 22 | { |
23 | 23 | const VALIDATION_ERROR_COMMAND_WITHOUT_PARAMETERS = 62401; |
24 | 24 | |
25 | - /** |
|
26 | - * @var integer |
|
27 | - */ |
|
25 | + /** |
|
26 | + * @var integer |
|
27 | + */ |
|
28 | 28 | protected $searchIndex = -1; |
29 | 29 | |
30 | - /** |
|
31 | - * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL |
|
32 | - */ |
|
30 | + /** |
|
31 | + * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL |
|
32 | + */ |
|
33 | 33 | protected $token; |
34 | 34 | |
35 | - /** |
|
36 | - * Retrieves the class name of the token type to |
|
37 | - * limit the token search to. Only a token of this |
|
38 | - * type will be stored. |
|
39 | - * |
|
40 | - * @return string |
|
41 | - */ |
|
35 | + /** |
|
36 | + * Retrieves the class name of the token type to |
|
37 | + * limit the token search to. Only a token of this |
|
38 | + * type will be stored. |
|
39 | + * |
|
40 | + * @return string |
|
41 | + */ |
|
42 | 42 | abstract protected function getTokenClass() : string; |
43 | 43 | |
44 | - /** |
|
45 | - * Allows the validator to apply custom search |
|
46 | - * criteria to the tokens that are searched |
|
47 | - * through to find the target token. |
|
48 | - * |
|
49 | - * NOTE: Should return true if there are no |
|
50 | - * custom criteria to apply. |
|
51 | - * |
|
52 | - * @param Mailcode_Parser_Statement_Tokenizer_Token $token |
|
53 | - * @return bool |
|
54 | - */ |
|
44 | + /** |
|
45 | + * Allows the validator to apply custom search |
|
46 | + * criteria to the tokens that are searched |
|
47 | + * through to find the target token. |
|
48 | + * |
|
49 | + * NOTE: Should return true if there are no |
|
50 | + * custom criteria to apply. |
|
51 | + * |
|
52 | + * @param Mailcode_Parser_Statement_Tokenizer_Token $token |
|
53 | + * @return bool |
|
54 | + */ |
|
55 | 55 | abstract protected function _isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token) : bool; |
56 | 56 | |
57 | - /** |
|
58 | - * @return Mailcode_Parser_Statement_Tokenizer_Token |
|
59 | - */ |
|
57 | + /** |
|
58 | + * @return Mailcode_Parser_Statement_Tokenizer_Token |
|
59 | + */ |
|
60 | 60 | abstract public function getToken(); |
61 | 61 | |
62 | - /** |
|
63 | - * Checks if the specified token matches the current |
|
64 | - * search criteria (index, type...). If the token is |
|
65 | - * a match, the `_isMatch()` method is called to allow |
|
66 | - * the validator class to apply some custom criteria. |
|
67 | - * |
|
68 | - * @param Mailcode_Parser_Statement_Tokenizer_Token $token |
|
69 | - * @param int $index |
|
70 | - * @return bool |
|
71 | - */ |
|
62 | + /** |
|
63 | + * Checks if the specified token matches the current |
|
64 | + * search criteria (index, type...). If the token is |
|
65 | + * a match, the `_isMatch()` method is called to allow |
|
66 | + * the validator class to apply some custom criteria. |
|
67 | + * |
|
68 | + * @param Mailcode_Parser_Statement_Tokenizer_Token $token |
|
69 | + * @param int $index |
|
70 | + * @return bool |
|
71 | + */ |
|
72 | 72 | protected function isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token, int $index) : bool |
73 | 73 | { |
74 | 74 | // filter out tokens of other types |
@@ -85,13 +85,13 @@ discard block |
||
85 | 85 | return $this->_isMatch($token); |
86 | 86 | } |
87 | 87 | |
88 | - /** |
|
89 | - * Attempts to find a token in the statement |
|
90 | - * that matches the current criteria, and the |
|
91 | - * first one it finds is returned. |
|
92 | - * |
|
93 | - * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL |
|
94 | - */ |
|
88 | + /** |
|
89 | + * Attempts to find a token in the statement |
|
90 | + * that matches the current criteria, and the |
|
91 | + * first one it finds is returned. |
|
92 | + * |
|
93 | + * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL |
|
94 | + */ |
|
95 | 95 | protected function findToken() : ?Mailcode_Parser_Statement_Tokenizer_Token |
96 | 96 | { |
97 | 97 | $tokens = $this->params->getTokens(); |
@@ -120,14 +120,14 @@ discard block |
||
120 | 120 | return false; |
121 | 121 | } |
122 | 122 | |
123 | - /** |
|
124 | - * Searches for a specific token index. |
|
125 | - * |
|
126 | - * NOTE: only relevant when trying to find a single token. |
|
127 | - * |
|
128 | - * @param int $index |
|
129 | - * @return $this |
|
130 | - */ |
|
123 | + /** |
|
124 | + * Searches for a specific token index. |
|
125 | + * |
|
126 | + * NOTE: only relevant when trying to find a single token. |
|
127 | + * |
|
128 | + * @param int $index |
|
129 | + * @return $this |
|
130 | + */ |
|
131 | 131 | public function setIndex(int $index) : Mailcode_Parser_Statement_Validator_TokenType |
132 | 132 | { |
133 | 133 | $this->searchIndex = $index; |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | */ |
21 | 21 | abstract class Mailcode_Parser_Statement_Validator_Type |
22 | 22 | { |
23 | - /** |
|
24 | - * @var Mailcode_Parser_Statement |
|
25 | - */ |
|
23 | + /** |
|
24 | + * @var Mailcode_Parser_Statement |
|
25 | + */ |
|
26 | 26 | protected $statement; |
27 | 27 | |
28 | 28 | /** |
@@ -30,14 +30,14 @@ discard block |
||
30 | 30 | */ |
31 | 31 | protected $params; |
32 | 32 | |
33 | - /** |
|
34 | - * @var boolean |
|
35 | - */ |
|
33 | + /** |
|
34 | + * @var boolean |
|
35 | + */ |
|
36 | 36 | private $valid = true; |
37 | 37 | |
38 | - /** |
|
39 | - * @var boolean |
|
40 | - */ |
|
38 | + /** |
|
39 | + * @var boolean |
|
40 | + */ |
|
41 | 41 | private $validated = false; |
42 | 42 | |
43 | 43 | public function __construct(Mailcode_Parser_Statement $statement) |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | |
54 | 54 | } |
55 | 55 | |
56 | - /** |
|
57 | - * @return $this |
|
58 | - */ |
|
56 | + /** |
|
57 | + * @return $this |
|
58 | + */ |
|
59 | 59 | public function validate() : Mailcode_Parser_Statement_Validator_Type |
60 | 60 | { |
61 | 61 | if(!$this->validated) |
@@ -22,10 +22,10 @@ |
||
22 | 22 | { |
23 | 23 | const ERROR_NO_KEYWORD_TOKEN_FOUND = 62701; |
24 | 24 | |
25 | - /** |
|
26 | - * The name of the keyword, with ":" appended. |
|
27 | - * @var string |
|
28 | - */ |
|
25 | + /** |
|
26 | + * The name of the keyword, with ":" appended. |
|
27 | + * @var string |
|
28 | + */ |
|
29 | 29 | protected $keywordName; |
30 | 30 | |
31 | 31 | public function __construct(Mailcode_Parser_Statement $statement, string $keywordName) |
@@ -22,9 +22,9 @@ |
||
22 | 22 | { |
23 | 23 | const ERROR_NO_OPERAND_TOKEN_FOUND = 62901; |
24 | 24 | |
25 | - /** |
|
26 | - * @var string |
|
27 | - */ |
|
25 | + /** |
|
26 | + * @var string |
|
27 | + */ |
|
28 | 28 | private $sign = ''; |
29 | 29 | |
30 | 30 | protected function getTokenClass() : string |
@@ -20,28 +20,28 @@ |
||
20 | 20 | */ |
21 | 21 | class Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral extends Mailcode_Parser_Statement_Tokenizer_Token implements Mailcode_Parser_Statement_Tokenizer_ValueInterface |
22 | 22 | { |
23 | - /** |
|
24 | - * Retrieves the text with the surrounding quotes. |
|
25 | - * @return string |
|
26 | - */ |
|
23 | + /** |
|
24 | + * Retrieves the text with the surrounding quotes. |
|
25 | + * @return string |
|
26 | + */ |
|
27 | 27 | public function getNormalized() : string |
28 | 28 | { |
29 | 29 | return $this->restoreQuotes($this->matchedText); |
30 | 30 | } |
31 | 31 | |
32 | - /** |
|
33 | - * Retrieves the text with the surrounding quotes. |
|
34 | - * @return string |
|
35 | - */ |
|
32 | + /** |
|
33 | + * Retrieves the text with the surrounding quotes. |
|
34 | + * @return string |
|
35 | + */ |
|
36 | 36 | public function getValue() : string |
37 | 37 | { |
38 | 38 | return $this->getNormalized(); |
39 | 39 | } |
40 | 40 | |
41 | - /** |
|
42 | - * Retrieves the text without the surrounding quotes. |
|
43 | - * @return string |
|
44 | - */ |
|
41 | + /** |
|
42 | + * Retrieves the text without the surrounding quotes. |
|
43 | + * @return string |
|
44 | + */ |
|
45 | 45 | public function getText() : string |
46 | 46 | { |
47 | 47 | $quoteless = trim($this->matchedText, '"\''); |
@@ -30,10 +30,10 @@ discard block |
||
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,11 +46,11 @@ discard block |
||
46 | 46 | ); |
47 | 47 | } |
48 | 48 | |
49 | - /** |
|
50 | - * Whether the operator is comparison related (equals, not equals, smaller, greater...). |
|
51 | - * |
|
52 | - * @return bool |
|
53 | - */ |
|
49 | + /** |
|
50 | + * Whether the operator is comparison related (equals, not equals, smaller, greater...). |
|
51 | + * |
|
52 | + * @return bool |
|
53 | + */ |
|
54 | 54 | public function isComparator() : bool |
55 | 55 | { |
56 | 56 | return |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | $this->isSmallerOrEquals(); |
63 | 63 | } |
64 | 64 | |
65 | - /** |
|
66 | - * Whether the operator is calculation related (minus, plus, divide, multiply). |
|
67 | - * |
|
68 | - * @return bool |
|
69 | - */ |
|
65 | + /** |
|
66 | + * Whether the operator is calculation related (minus, plus, divide, multiply). |
|
67 | + * |
|
68 | + * @return bool |
|
69 | + */ |
|
70 | 70 | public function isCalculator() : bool |
71 | 71 | { |
72 | 72 | return |