Passed
Push — master ( b87bd2...81711e )
by Sebastian
03:45
created
src/Mailcode/Parser/Statement/Tokenizer.php 1 patch
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 {
24 24
     const ERROR_TOKENIZE_METHOD_MISSING = 49801;
25 25
     
26
-   /**
27
-    * @var string[]
28
-    */
26
+    /**
27
+     * @var string[]
28
+     */
29 29
     protected $operands = array(
30 30
         '==',
31 31
         '<=',
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
         '<'
41 41
     );
42 42
     
43
-   /**
44
-    * @var string[]
45
-    */
43
+    /**
44
+     * @var string[]
45
+     */
46 46
     protected $keywords = array(
47 47
         'in:',
48 48
         'insensitive:'
49 49
     );
50 50
     
51
-   /**
52
-    * @var string
53
-    */
51
+    /**
52
+     * @var string
53
+     */
54 54
     protected $delimiter = '§§';
55 55
     
56 56
     /**
@@ -67,19 +67,19 @@  discard block
 block discarded – undo
67 67
         'extract_tokens'
68 68
     );
69 69
     
70
-   /**
71
-    * @var Mailcode_Parser_Statement
72
-    */
70
+    /**
71
+     * @var Mailcode_Parser_Statement
72
+     */
73 73
     protected $statement;
74 74
     
75
-   /**
76
-    * @var string
77
-    */
75
+    /**
76
+     * @var string
77
+     */
78 78
     protected $tokenized;
79 79
     
80
-   /**
81
-    * @var Mailcode_Parser_Statement_Tokenizer_Token[]
82
-    */
80
+    /**
81
+     * @var Mailcode_Parser_Statement_Tokenizer_Token[]
82
+     */
83 83
     protected $tokensTemporary = array();
84 84
     
85 85
     /**
@@ -87,9 +87,9 @@  discard block
 block discarded – undo
87 87
      */
88 88
     protected $tokensOrdered = array();
89 89
     
90
-   /**
91
-    * @var string[]
92
-    */
90
+    /**
91
+     * @var string[]
92
+     */
93 93
     protected static $ids = array();
94 94
     
95 95
     public function __construct(Mailcode_Parser_Statement $statement)
@@ -99,12 +99,12 @@  discard block
 block discarded – undo
99 99
         $this->tokenize($statement->getStatementString());
100 100
     }
101 101
 
102
-   /**
103
-    * Retrieves all tokens detected in the statement string, in 
104
-    * the order they were found.
105
-    * 
106
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
107
-    */
102
+    /**
103
+     * Retrieves all tokens detected in the statement string, in 
104
+     * the order they were found.
105
+     * 
106
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
107
+     */
108 108
     public function getTokens()
109 109
     {
110 110
         return $this->tokensOrdered;
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
         return !empty($this->tokensOrdered);
116 116
     }
117 117
     
118
-   /**
119
-    * Whether there were any unknown tokens in the statement.
120
-    * 
121
-    * @return bool
122
-    */
118
+    /**
119
+     * Whether there were any unknown tokens in the statement.
120
+     * 
121
+     * @return bool
122
+     */
123 123
     public function hasUnknown() : bool
124 124
     {
125 125
         $unknown = $this->getUnknown();
@@ -127,11 +127,11 @@  discard block
 block discarded – undo
127 127
         return !empty($unknown);
128 128
     }
129 129
     
130
-   /**
131
-    * Retrieves all unknown content tokens, if any.
132
-    * 
133
-    * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
134
-    */
130
+    /**
131
+     * Retrieves all unknown content tokens, if any.
132
+     * 
133
+     * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
134
+     */
135 135
     public function getUnknown()
136 136
     {
137 137
         $result = array();
@@ -201,13 +201,13 @@  discard block
 block discarded – undo
201 201
         }
202 202
     }
203 203
    
204
-   /**
205
-    * Registers a token to add in the statement string.
206
-    * 
207
-    * @param string $type
208
-    * @param string $matchedText
209
-    * @param mixed $subject
210
-    */
204
+    /**
205
+     * Registers a token to add in the statement string.
206
+     * 
207
+     * @param string $type
208
+     * @param string $matchedText
209
+     * @param mixed $subject
210
+     */
211 211
     protected function registerToken(string $type, string $matchedText, $subject=null) : void
212 212
     {
213 213
         $tokenID = $this->generateID();
@@ -236,11 +236,11 @@  discard block
 block discarded – undo
236 236
         return null;
237 237
     }
238 238
     
239
-   /**
240
-    * Some WYSIWYG editors like using pretty quotes instead
241
-    * of the usual double quotes. This simply replaces all
242
-    * occurrences with the regular variant.
243
-    */
239
+    /**
240
+     * Some WYSIWYG editors like using pretty quotes instead
241
+     * of the usual double quotes. This simply replaces all
242
+     * occurrences with the regular variant.
243
+     */
244 244
     protected function tokenize_normalize_quotes() : void
245 245
     {
246 246
         $this->tokenized = str_replace(array('“', '”'), '"', $this->tokenized);
@@ -329,13 +329,13 @@  discard block
 block discarded – undo
329 329
         }
330 330
     }
331 331
     
332
-   /**
333
-    * Generates a unique alphabet-based ID without numbers
334
-    * to use as token name, to avoid conflicts with the
335
-    * numbers detection.
336
-    * 
337
-    * @return string
338
-    */
332
+    /**
333
+     * Generates a unique alphabet-based ID without numbers
334
+     * to use as token name, to avoid conflicts with the
335
+     * numbers detection.
336
+     * 
337
+     * @return string
338
+     */
339 339
     protected function generateID() : string
340 340
     {
341 341
         static $alphas;
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter/SingleLines.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class Mailcode_Parser_Safeguard_Formatter_SingleLines extends Mailcode_Parser_Safeguard_Formatter
25 25
 {
26
-   /**
27
-    * @var string
28
-    */
26
+    /**
27
+     * @var string
28
+     */
29 29
     private $eol;
30 30
     
31
-   /**
32
-    * @var int
33
-    */
31
+    /**
32
+     * @var int
33
+     */
34 34
     private $eolLength;
35 35
     
36 36
     protected function initFormatting(string $subject) : string
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
         return $this->eolLength;
52 52
     }
53 53
 
54
-   /**
55
-    * We only use placeholders that contain commands that do
56
-    * not generate contents, since these are the only ones
57
-    * that may need adjusting.
58
-    * 
59
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
60
-    */
54
+    /**
55
+     * We only use placeholders that contain commands that do
56
+     * not generate contents, since these are the only ones
57
+     * that may need adjusting.
58
+     * 
59
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
60
+     */
61 61
     protected function filterPlaceholders()
62 62
     {
63 63
         $placeholders = $this->safeguard->getPlaceholders();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter/SingleLines/Location.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -23,24 +23,24 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class Mailcode_Parser_Safeguard_Formatter_SingleLines_Location extends Mailcode_Parser_Safeguard_FormatterLocation
25 25
 {
26
-   /**
27
-    * @var int
28
-    */
26
+    /**
27
+     * @var int
28
+     */
29 29
     protected $eolLength;
30 30
     
31
-   /**
32
-    * @var string
33
-    */
31
+    /**
32
+     * @var string
33
+     */
34 34
     protected $eol;
35 35
     
36
-   /**
37
-    * @var boolean
38
-    */
36
+    /**
37
+     * @var boolean
38
+     */
39 39
     protected $prepend = false;
40 40
 
41
-   /**
42
-    * @var boolean
43
-    */
41
+    /**
42
+     * @var boolean
43
+     */
44 44
     protected $append = false;
45 45
     
46 46
     protected function init() : void
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
         $this->analyzeAppend();
53 53
     }
54 54
     
55
-   /**
56
-    * Whether an EOL character needs to be appended or prepended.
57
-    *  
58
-    * @return bool
59
-    */
55
+    /**
56
+     * Whether an EOL character needs to be appended or prepended.
57
+     *  
58
+     * @return bool
59
+     */
60 60
     public function requiresAdjustment() : bool
61 61
     {
62 62
         return $this->requiresAppend() || $this->requiresPrepend();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter/HTMLHighlighting/Location.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
 {
25 25
     const COMMAND_MARKER = '__MAILCODE_COMMAND__';
26 26
     
27
-   /**
28
-    * @var array<int,array<int,string>>
29
-    */
27
+    /**
28
+     * @var array<int,array<int,string>>
29
+     */
30 30
     private $tagAncestry;
31 31
     
32 32
     protected function init() : void
@@ -49,18 +49,18 @@  discard block
 block discarded – undo
49 49
     {
50 50
         if($this->isInTagAttributes() || $this->isInExcludedTag()) 
51 51
         {
52
-           return false; 
52
+            return false; 
53 53
         }
54 54
         
55 55
         return true;
56 56
     }
57 57
     
58
-   /**
59
-    * Retrieves the part of the subject string that comes
60
-    * before the command.
61
-    * 
62
-    * @return string
63
-    */
58
+    /**
59
+     * Retrieves the part of the subject string that comes
60
+     * before the command.
61
+     * 
62
+     * @return string
63
+     */
64 64
     private function getHaystackBefore() : string
65 65
     {
66 66
         $pos = $this->location->getStartPosition();
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
         return mb_substr($subject, 0, $pos).self::COMMAND_MARKER.'>';
81 81
     }
82 82
     
83
-   /**
84
-    * Whether the command is nested in one of the tags
85
-    * that have been added to the list of excluded tags.
86
-    * 
87
-    * @return bool
88
-    */
83
+    /**
84
+     * Whether the command is nested in one of the tags
85
+     * that have been added to the list of excluded tags.
86
+     * 
87
+     * @return bool
88
+     */
89 89
     private function isInExcludedTag() : bool
90 90
     {
91 91
         $tagNames = $this->getParentTags();
@@ -101,12 +101,12 @@  discard block
 block discarded – undo
101 101
         return false;
102 102
     }
103 103
     
104
-   /**
105
-    * Retrieves a list of the command's parent HTML tags, from
106
-    * highest to lowest.
107
-    * 
108
-    * @return string[]
109
-    */
104
+    /**
105
+     * Retrieves a list of the command's parent HTML tags, from
106
+     * highest to lowest.
107
+     * 
108
+     * @return string[]
109
+     */
110 110
     private function getParentTags() : array
111 111
     {
112 112
         // Create a stack of all direct parent tags of the command.
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
         return $stack;
130 130
     }
131 131
     
132
-   /**
133
-    * Checks whether the command is located within the attributes
134
-    * of an HTML tag.
135
-    * 
136
-    * @return bool
137
-    */
132
+    /**
133
+     * Checks whether the command is located within the attributes
134
+     * of an HTML tag.
135
+     * 
136
+     * @return bool
137
+     */
138 138
     private function isInTagAttributes() : bool
139 139
     {
140 140
         // This check is easy: if the command is in the attribute
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter/HTMLHighlighting.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting extends Mailcode_Parser_Safeguard_Formatter
24 24
 {
25
-   /**
26
-    * @var string[]
27
-    */
25
+    /**
26
+     * @var string[]
27
+     */
28 28
     private $excludeTags = array(
29 29
         'style', // NOTE: style tags are excluded natively on the parser level.
30 30
         'script'
@@ -35,13 +35,13 @@  discard block
 block discarded – undo
35 35
         return $subject;
36 36
     }
37 37
     
38
-   /**
39
-    * Adds an HTML tag name to the list of tags within which
40
-    * commands may not be highlighted.
41
-    * 
42
-    * @param string $tagName Case insensitive.
43
-    * @return Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
44
-    */
38
+    /**
39
+     * Adds an HTML tag name to the list of tags within which
40
+     * commands may not be highlighted.
41
+     * 
42
+     * @param string $tagName Case insensitive.
43
+     * @return Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
44
+     */
45 45
     public function excludeTag(string $tagName) : Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
46 46
     {
47 47
         $tagName = strtolower($tagName);
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
         return $this;
55 55
     }
56 56
     
57
-   /**
58
-    * Adds several exluded tag names at once.
59
-    * 
60
-    * @param string[] $tagNames
61
-    * @return Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
62
-    */
57
+    /**
58
+     * Adds several exluded tag names at once.
59
+     * 
60
+     * @param string[] $tagNames
61
+     * @return Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
62
+     */
63 63
     public function excludeTags(array $tagNames) : Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting
64 64
     {
65 65
         foreach($tagNames as $tagName)
@@ -70,12 +70,12 @@  discard block
 block discarded – undo
70 70
         return $this;
71 71
     }
72 72
     
73
-   /**
74
-    * Whether the specified tag name is in the exlusion list.
75
-    * 
76
-    * @param string $tagName
77
-    * @return bool
78
-    */
73
+    /**
74
+     * Whether the specified tag name is in the exlusion list.
75
+     * 
76
+     * @param string $tagName
77
+     * @return bool
78
+     */
79 79
     public function isTagExcluded(string $tagName) : bool
80 80
     {
81 81
         $tagName = strtolower($tagName);
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
  */
25 25
 abstract class Mailcode_Parser_Safeguard_Formatter
26 26
 {
27
-   /**
28
-    * @var Mailcode_Parser_Safeguard
29
-    */
27
+    /**
28
+     * @var Mailcode_Parser_Safeguard
29
+     */
30 30
     protected $safeguard;
31 31
     
32 32
     public function __construct(Mailcode_Parser_Safeguard $safeguard)
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
         return $locator->getSubjectString();
89 89
     }
90 90
     
91
-   /**
92
-    * Resolves the newline character used in the string.
93
-    * 
94
-    * @param string $subject
95
-    * @return string
96
-    */
91
+    /**
92
+     * Resolves the newline character used in the string.
93
+     * 
94
+     * @param string $subject
95
+     * @return string
96
+     */
97 97
     protected function resolveNewlineChar(string $subject) : string
98 98
     {
99 99
         $eol = ConvertHelper::detectEOLCharacter($subject);
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
         return PHP_EOL;
107 107
     }
108 108
     
109
-   /**
110
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
111
-    */
109
+    /**
110
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
111
+     */
112 112
     protected function filterPlaceholders()
113 113
     {
114 114
         return $this->safeguard->getPlaceholders();
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/FormatterLocation.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
  */
23 23
 abstract class Mailcode_Parser_Safeguard_FormatterLocation
24 24
 {
25
-   /**
26
-    * @var Mailcode_Parser_Safeguard_Formatter
27
-    */
25
+    /**
26
+     * @var Mailcode_Parser_Safeguard_Formatter
27
+     */
28 28
     protected $formatter;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
32
+     */
33 33
     protected $location;
34 34
     
35 35
     public function __construct(Mailcode_Parser_Safeguard_Formatter $formatter, Mailcode_Parser_Safeguard_Placeholder_Locator_Location $location)
@@ -42,22 +42,22 @@  discard block
 block discarded – undo
42 42
     
43 43
     abstract protected function init() : void; 
44 44
     
45
-   /**
46
-    * Whether this specific placeholder location needs to be adjusted.
47
-    * 
48
-    * @return bool
49
-    */
45
+    /**
46
+     * Whether this specific placeholder location needs to be adjusted.
47
+     * 
48
+     * @return bool
49
+     */
50 50
     abstract public function requiresAdjustment() : bool;
51 51
     
52 52
     abstract protected function getAdjustedText() : string;
53 53
     
54
-   /**
55
-    * Retrieves the placeholder text, adjusted as needed by the
56
-    * formatter. If no adjustments are required, this will simply
57
-    * return the vanilla placeholder string.
58
-    *  
59
-    * @return string
60
-    */
54
+    /**
55
+     * Retrieves the placeholder text, adjusted as needed by the
56
+     * formatter. If no adjustments are required, this will simply
57
+     * return the vanilla placeholder string.
58
+     *  
59
+     * @return string
60
+     */
61 61
     public function getPlaceholderText() : string
62 62
     {
63 63
         if($this->requiresAdjustment())
Please login to merge, or discard this patch.
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.