Passed
Push — master ( 707ba4...19aa6f )
by Sebastian
02:43
created
src/Mailcode/Commands/Command/Code.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $lang = $this->params->getInfo()->getStringLiteralByIndex(0);
93 93
 
94
-        if($lang)
94
+        if ($lang)
95 95
         {
96 96
             $this->langToken = $lang;
97 97
             return;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     {
116 116
         // To keep PHPStan happy. If no token has been found, this
117 117
         // method will not be called.
118
-        if(!isset($this->langToken))
118
+        if (!isset($this->langToken))
119 119
         {
120 120
             return;
121 121
         }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         $name = $this->langToken->getText();
124 124
         $translator = new Mailcode_Translator();
125 125
 
126
-        if($translator->syntaxExists($name))
126
+        if ($translator->syntaxExists($name))
127 127
         {
128 128
             return;
129 129
         }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function getSyntaxName() : string
148 148
     {
149
-        if(isset($this->langToken))
149
+        if (isset($this->langToken))
150 150
         {
151 151
             return $this->langToken->getText();
152 152
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Normalizer.php 2 patches
Spacing   +7 added lines, -7 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,12 +67,12 @@  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
-        if($command->hasFreeformParameters())
75
+        if ($command->hasFreeformParameters())
76 76
         {
77 77
             $params = $command->getParams()->getStatementString();
78 78
         }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             $params = $command->getParams()->getNormalized();
82 82
         }
83 83
         
84
-        if(empty($params))
84
+        if (empty($params))
85 85
         {
86 86
             return;
87 87
         }
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
     
93 93
     private function addLogicKeywords() : 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->parts[] = ' ';
105 105
             $this->parts[] = $keyword->getKeywordString(); // e.g. "if variable"
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,7 @@
 block discarded – undo
75 75
         if($command->hasFreeformParameters())
76 76
         {
77 77
             $params = $command->getParams()->getStatementString();
78
-        }
79
-        else
78
+        } else
80 79
         {
81 80
             $params = $command->getParams()->getNormalized();
82 81
         }
Please login to merge, or discard this patch.
src/Mailcode/Interfaces/Commands/URLDecode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
      * @param bool $decode
13 13
      * @return $this
14 14
      */
15
-    public function setURLDecoding(bool $decode=true);
15
+    public function setURLDecoding(bool $decode = true);
16 16
 }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/URLEncode.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $keywords = $this->params->getInfo()->getKeywords();
36 36
 
37
-        foreach($keywords as $keyword)
37
+        foreach ($keywords as $keyword)
38 38
         {
39
-            if($keyword->isURLEncoded())
39
+            if ($keyword->isURLEncoded())
40 40
             {
41 41
                 $this->urlencodeToken = $keyword;
42 42
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * @param bool $encoding
52 52
      * @return $this
53 53
      */
54
-    abstract public function setURLEncoding(bool $encoding=true);
54
+    abstract public function setURLEncoding(bool $encoding = true);
55 55
 
56 56
     public function getURLEncodeToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
57 57
     {
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/URLDecode.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $keywords = $this->params->getInfo()->getKeywords();
35 35
 
36
-        foreach($keywords as $keyword)
36
+        foreach ($keywords as $keyword)
37 37
         {
38
-            if($keyword->isURLDecode())
38
+            if ($keyword->isURLDecode())
39 39
             {
40 40
                 $this->urldecodeToken = $keyword;
41 41
                 break;
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         }
44 44
     }
45 45
 
46
-    abstract public function setURLDecoding(bool $decode=true);
46
+    abstract public function setURLDecoding(bool $decode = true);
47 47
 
48 48
     public function getURLDecodeToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
49 49
     {
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info/Keywords.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $token = $this->info->getTokenByIndex($index);
36 36
 
37
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
37
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
38 38
         {
39 39
             return $token;
40 40
         }
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
         $result = array();
51 51
         $tokens = $this->info->getTokens();
52 52
 
53
-        foreach($tokens as $token)
53
+        foreach ($tokens as $token)
54 54
         {
55
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
55
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
56 56
             {
57 57
                 $result[] = $token;
58 58
             }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function setEnabled(string $keyword, bool $enabled) : Mailcode_Parser_Statement_Info_Keywords
73 73
     {
74
-        if($enabled)
74
+        if ($enabled)
75 75
         {
76 76
             return $this->add($keyword);
77 77
         }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $keyword = rtrim($keyword, ':').':';
92 92
 
93
-        if(!$this->hasKeyword($keyword))
93
+        if (!$this->hasKeyword($keyword))
94 94
         {
95 95
             $this->tokenizer->appendKeyword($keyword);
96 96
         }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
         foreach ($keywords as $kw)
137 137
         {
138
-            if($kw->getKeyword() === $keyword)
138
+            if ($kw->getKeyword() === $keyword)
139 139
             {
140 140
                 return true;
141 141
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info/Variables.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $operand = $this->info->getOperandByIndex(1);
34 34
         $value = $this->info->getTokenByIndex(2);
35 35
 
36
-        if($variable && $operand && $value && $operand->isAssignment())
36
+        if ($variable && $operand && $value && $operand->isAssignment())
37 37
         {
38 38
             return true;
39 39
         }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $operand = $this->info->getOperandByIndex(1);
53 53
         $value = $this->info->getTokenByIndex(2);
54 54
 
55
-        if($variable && $operand && $value && $operand->isComparator())
55
+        if ($variable && $operand && $value && $operand->isComparator())
56 56
         {
57 57
             return true;
58 58
         }
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
         $result = array();
72 72
         $tokens = $this->tokenizer->getTokens();
73 73
 
74
-        foreach($tokens as $token)
74
+        foreach ($tokens as $token)
75 75
         {
76
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
76
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
77 77
             {
78 78
                 $result[] = $token->getVariable();
79 79
             }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $token = $this->info->getTokenByIndex($index);
96 96
 
97
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
97
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
98 98
         {
99 99
             return $token;
100 100
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info.php 2 patches
Indentation   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Mailcode_Parser_Statement_Info
23 23
 {
24
-   /**
25
-    * @var Mailcode_Parser_Statement_Tokenizer
26
-    */
24
+    /**
25
+     * @var Mailcode_Parser_Statement_Tokenizer
26
+     */
27 27
     protected $tokenizer;
28 28
     
29
-   /**
30
-    * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
-    */
29
+    /**
30
+     * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
+     */
32 32
     protected $tokens = array();
33 33
 
34 34
     /**
@@ -52,21 +52,21 @@  discard block
 block discarded – undo
52 52
         $this->tokenizer->onTokensChanged(array($this, 'handleTokensChanged'));
53 53
     }
54 54
     
55
-   /**
56
-    * Whether the whole statement is a variable being assigned a value.
57
-    * 
58
-    * @return bool
59
-    */
55
+    /**
56
+     * Whether the whole statement is a variable being assigned a value.
57
+     * 
58
+     * @return bool
59
+     */
60 60
     public function isVariableAssignment() : bool
61 61
     {
62 62
         return $this->variables->isAssignment();
63 63
     }
64 64
     
65
-   /**
66
-    * Whether the whole statement is a variable being compared to something.
67
-    * 
68
-    * @return bool
69
-    */
65
+    /**
66
+     * Whether the whole statement is a variable being compared to something.
67
+     * 
68
+     * @return bool
69
+     */
70 70
     public function isVariableComparison() : bool
71 71
     {
72 72
         return $this->variables->isComparison();
@@ -83,27 +83,27 @@  discard block
 block discarded – undo
83 83
         return $this->variables->getAll();
84 84
     }
85 85
     
86
-   /**
87
-    * Retrieves a variable by its position in the command's parameters.
88
-    * Returns null if there is no parameter at the specified index, or
89
-    * if it is of another type.
90
-    * 
91
-    * @param int $index Zero-based index.
92
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
93
-    */
86
+    /**
87
+     * Retrieves a variable by its position in the command's parameters.
88
+     * Returns null if there is no parameter at the specified index, or
89
+     * if it is of another type.
90
+     * 
91
+     * @param int $index Zero-based index.
92
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
93
+     */
94 94
     public function getVariableByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Variable
95 95
     {
96 96
         return $this->variables->getByIndex($index);
97 97
     }
98 98
     
99
-   /**
100
-    * Retrieves a string literal by its position in the command's parameters.
101
-    * Returns null if there is no parameter at the specified index, or
102
-    * if it is of another type.
103
-    *
104
-    * @param int $index Zero-based index.
105
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
106
-    */
99
+    /**
100
+     * Retrieves a string literal by its position in the command's parameters.
101
+     * Returns null if there is no parameter at the specified index, or
102
+     * if it is of another type.
103
+     *
104
+     * @param int $index Zero-based index.
105
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
106
+     */
107 107
     public function getStringLiteralByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral
108 108
     {
109 109
         $token = $this->getTokenByIndex($index);
@@ -116,27 +116,27 @@  discard block
 block discarded – undo
116 116
         return null;
117 117
     }
118 118
     
119
-   /**
120
-    * Retrieves a keyword by its position in the command's parameters.
121
-    * Returns null if there is no parameter at the specified index, or
122
-    * if it is of another type.
123
-    *
124
-    * @param int $index Zero-based index.
125
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
126
-    */
119
+    /**
120
+     * Retrieves a keyword by its position in the command's parameters.
121
+     * Returns null if there is no parameter at the specified index, or
122
+     * if it is of another type.
123
+     *
124
+     * @param int $index Zero-based index.
125
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
126
+     */
127 127
     public function getKeywordByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
128 128
     {
129 129
         return $this->keywords->getByIndex($index);
130 130
     }
131 131
     
132
-   /**
133
-    * Retrieves an operand by its position in the command's parameters.
134
-    * Returns null if there is no parameter at the specified index, or
135
-    * if it is of another type.
136
-    *
137
-    * @param int $index Zero-based index.
138
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
139
-    */
132
+    /**
133
+     * Retrieves an operand by its position in the command's parameters.
134
+     * Returns null if there is no parameter at the specified index, or
135
+     * if it is of another type.
136
+     *
137
+     * @param int $index Zero-based index.
138
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
139
+     */
140 140
     public function getOperandByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Operand
141 141
     {
142 142
         $token = $this->getTokenByIndex($index);
@@ -149,14 +149,14 @@  discard block
 block discarded – undo
149 149
         return null;
150 150
     }
151 151
     
152
-   /**
153
-    * Retrieves a parameter token by its position in the command's parameters,
154
-    * regardless of its type. Returns null if there is no parameter at the 
155
-    * specified index.
156
-    *
157
-    * @param int $index Zero-based index.
158
-    * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
159
-    */
152
+    /**
153
+     * Retrieves a parameter token by its position in the command's parameters,
154
+     * regardless of its type. Returns null if there is no parameter at the 
155
+     * specified index.
156
+     *
157
+     * @param int $index Zero-based index.
158
+     * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
159
+     */
160 160
     public function getTokenByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token
161 161
     {
162 162
         if(isset($this->tokens[$index]))
@@ -172,19 +172,19 @@  discard block
 block discarded – undo
172 172
         return isset($this->tokens[$index]);
173 173
     }
174 174
     
175
-   /**
176
-    * Retrieves all tokens.
177
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
178
-    */
175
+    /**
176
+     * Retrieves all tokens.
177
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
178
+     */
179 179
     public function getTokens() : array
180 180
     {
181 181
         return $this->tokens;
182 182
     }
183 183
     
184
-   /**
185
-    * Retrieves all string literals that were found in the command.
186
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
187
-    */
184
+    /**
185
+     * Retrieves all string literals that were found in the command.
186
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
187
+     */
188 188
     public function getStringLiterals() : array
189 189
     {
190 190
         $result = array();
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $token = $this->getTokenByIndex($index);
110 110
         
111
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
111
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
112 112
         {
113 113
             return $token;
114 114
         }
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         $token = $this->getTokenByIndex($index);
143 143
         
144
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
144
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
145 145
         {
146 146
             return $token;
147 147
         }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     */
160 160
     public function getTokenByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token
161 161
     {
162
-        if(isset($this->tokens[$index]))
162
+        if (isset($this->tokens[$index]))
163 163
         {
164 164
             return $this->tokens[$index];
165 165
         }
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
     {
190 190
         $result = array();
191 191
         
192
-        foreach($this->tokens as $token)
192
+        foreach ($this->tokens as $token)
193 193
         {
194
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
194
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
195 195
             {
196 196
                 $result[] = $token;
197 197
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -107,9 +107,9 @@  discard block
 block discarded – undo
107 107
     {
108 108
         $result = array();
109 109
         
110
-        foreach($this->tokensOrdered as $token)
110
+        foreach ($this->tokensOrdered as $token)
111 111
         {
112
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
112
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
113 113
             {
114 114
                 $result[] = $token;
115 115
             }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         $unknown = $this->getUnknown();
124 124
         
125
-        if(!empty($unknown))
125
+        if (!empty($unknown))
126 126
         {
127 127
             return array_shift($unknown);
128 128
         }
@@ -134,11 +134,11 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $parts = array();
136 136
         
137
-        foreach($this->tokensOrdered as $token)
137
+        foreach ($this->tokensOrdered as $token)
138 138
         {
139 139
             $string = $token->getNormalized();
140 140
             
141
-            if($string != '')
141
+            if ($string != '')
142 142
             {
143 143
                 $parts[] = $string;
144 144
             }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         $statement = trim($statement);
163 163
         $tokens = array();
164 164
 
165
-        foreach($this->tokenCategories as $tokenCategory)
165
+        foreach ($this->tokenCategories as $tokenCategory)
166 166
         {
167 167
             $processor = $this->createProcessor($tokenCategory, $statement, $tokens);
168 168
             $processor->process();
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 
189 189
         $instance = new $class($this, $statement, $tokens);
190 190
 
191
-        if($instance instanceof Mailcode_Parser_Statement_Tokenizer_Process)
191
+        if ($instance instanceof Mailcode_Parser_Statement_Tokenizer_Process)
192 192
         {
193 193
             return $instance;
194 194
         }
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      * @param mixed $subject
210 210
      * @return Mailcode_Parser_Statement_Tokenizer_Token
211 211
      */
212
-    public function createToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token
212
+    public function createToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token
213 213
     {
214 214
         $tokenID = $this->generateID();
215 215
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
         $token = $this->appendToken('Keyword', $name);
226 226
 
227
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
227
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
228 228
         {
229 229
             return $token;
230 230
         }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         foreach ($this->tokensOrdered as $checkToken)
245 245
         {
246
-            if($checkToken->getID() !== $tokenID)
246
+            if ($checkToken->getID() !== $tokenID)
247 247
             {
248 248
                 $keep[] = $checkToken;
249 249
             }
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
      * @param mixed $subject
263 263
      * @return Mailcode_Parser_Statement_Tokenizer_Token
264 264
      */
265
-    protected function appendToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token
265
+    protected function appendToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token
266 266
     {
267 267
         $token = $this->createToken($type, $matchedText, $subject);
268 268
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     {
285 285
         static $alphas;
286 286
 
287
-        if(!isset($alphas))
287
+        if (!isset($alphas))
288 288
         {
289 289
             $alphas = range('A', 'Z');
290 290
         }
@@ -293,12 +293,12 @@  discard block
 block discarded – undo
293 293
 
294 294
         $result = '';
295 295
 
296
-        for($i=0; $i < $amount; $i++)
296
+        for ($i = 0; $i < $amount; $i++)
297 297
         {
298 298
             $result .= $alphas[array_rand($alphas)];
299 299
         }
300 300
 
301
-        if(!in_array($result, self::$ids))
301
+        if (!in_array($result, self::$ids))
302 302
         {
303 303
             self::$ids[] = $result;
304 304
             return $result;
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
      */
313 313
     public function onTokensChanged($callback) : void
314 314
     {
315
-        if(is_callable($callback))
315
+        if (is_callable($callback))
316 316
         {
317 317
             $this->changeHandlers[] = $callback;
318 318
         }
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
         'ExtractTokens'
39 39
     );
40 40
     
41
-   /**
42
-    * @var Mailcode_Parser_Statement
43
-    */
41
+    /**
42
+     * @var Mailcode_Parser_Statement
43
+     */
44 44
     protected $statement;
45 45
     
46
-   /**
47
-    * @var string
48
-    */
46
+    /**
47
+     * @var string
48
+     */
49 49
     protected $tokenized;
50 50
     
51 51
     /**
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
      */
54 54
     protected $tokensOrdered = array();
55 55
     
56
-   /**
57
-    * @var string[]
58
-    */
56
+    /**
57
+     * @var string[]
58
+     */
59 59
     protected static $ids = array();
60 60
 
61 61
     /**
@@ -75,12 +75,12 @@  discard block
 block discarded – undo
75 75
         return $this->statement->getSourceCommand();
76 76
     }
77 77
 
78
-   /**
79
-    * Retrieves all tokens detected in the statement string, in 
80
-    * the order they were found.
81
-    * 
82
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
83
-    */
78
+    /**
79
+     * Retrieves all tokens detected in the statement string, in 
80
+     * the order they were found.
81
+     * 
82
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
83
+     */
84 84
     public function getTokens()
85 85
     {
86 86
         return $this->tokensOrdered;
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
         return !empty($this->tokensOrdered);
92 92
     }
93 93
     
94
-   /**
95
-    * Whether there were any unknown tokens in the statement.
96
-    * 
97
-    * @return bool
98
-    */
94
+    /**
95
+     * Whether there were any unknown tokens in the statement.
96
+     * 
97
+     * @return bool
98
+     */
99 99
     public function hasUnknown() : bool
100 100
     {
101 101
         $unknown = $this->getUnknown();
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
         return !empty($unknown);
104 104
     }
105 105
     
106
-   /**
107
-    * Retrieves all unknown content tokens, if any.
108
-    * 
109
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
110
-    */
106
+    /**
107
+     * Retrieves all unknown content tokens, if any.
108
+     * 
109
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Unknown[]
110
+     */
111 111
     public function getUnknown()
112 112
     {
113 113
         $result = array();
@@ -278,13 +278,13 @@  discard block
 block discarded – undo
278 278
         return $token;
279 279
     }
280 280
     
281
-   /**
282
-    * Generates a unique alphabet-based ID without numbers
283
-    * to use as token name, to avoid conflicts with the
284
-    * numbers detection.
285
-    *
286
-    * @return string
287
-    */
281
+    /**
282
+     * Generates a unique alphabet-based ID without numbers
283
+     * to use as token name, to avoid conflicts with the
284
+     * numbers detection.
285
+     *
286
+     * @return string
287
+     */
288 288
     protected function generateID() : string
289 289
     {
290 290
         static $alphas;
Please login to merge, or discard this patch.