@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | $var = $this->validator->createVariable(); |
35 | 35 | |
36 | - if($var->isValid()) |
|
36 | + if ($var->isValid()) |
|
37 | 37 | { |
38 | 38 | $this->variableToken = $var->getToken(); |
39 | 39 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | public function getVariableToken() : Mailcode_Parser_Statement_Tokenizer_Token_Variable |
50 | 50 | { |
51 | - if(isset($this->variableToken)) |
|
51 | + if (isset($this->variableToken)) |
|
52 | 52 | { |
53 | 53 | return $this->variableToken; |
54 | 54 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function getVariable() : Mailcode_Variables_Variable |
69 | 69 | { |
70 | - if(isset($this->variableToken)) |
|
70 | + if (isset($this->variableToken)) |
|
71 | 71 | { |
72 | 72 | return $this->variableToken->getVariable(); |
73 | 73 | } |
@@ -115,12 +115,12 @@ discard block |
||
115 | 115 | { |
116 | 116 | $parent = $subject->getParent(); |
117 | 117 | |
118 | - if($parent === null) |
|
118 | + if ($parent === null) |
|
119 | 119 | { |
120 | 120 | return null; |
121 | 121 | } |
122 | 122 | |
123 | - if($parent instanceof Mailcode_Commands_Command_For) |
|
123 | + if ($parent instanceof Mailcode_Commands_Command_For) |
|
124 | 124 | { |
125 | 125 | return $parent; |
126 | 126 | } |
@@ -33,9 +33,9 @@ discard block |
||
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 |
||
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 | { |
@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -108,7 +108,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -107,9 +107,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * @param string $matchedText |
67 | 67 | * @param mixed $subject |
68 | 68 | */ |
69 | - protected function registerToken(string $type, string $matchedText, $subject=null) : void |
|
69 | + protected function registerToken(string $type, string $matchedText, $subject = null) : void |
|
70 | 70 | { |
71 | 71 | $this->tokensTemporary[] = $this->createToken($type, $matchedText, $subject); |
72 | 72 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * @param mixed $subject |
78 | 78 | * @return Mailcode_Parser_Statement_Tokenizer_Token |
79 | 79 | */ |
80 | - public function createToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token |
|
80 | + public function createToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token |
|
81 | 81 | { |
82 | 82 | $token = $this->tokenizer->createToken($type, $matchedText, $subject); |
83 | 83 | $tokenID = $token->getID(); |
@@ -93,9 +93,9 @@ discard block |
||
93 | 93 | |
94 | 94 | protected function getTokenByID(string $tokenID) : ?Mailcode_Parser_Statement_Tokenizer_Token |
95 | 95 | { |
96 | - foreach($this->tokensTemporary as $token) |
|
96 | + foreach ($this->tokensTemporary as $token) |
|
97 | 97 | { |
98 | - if($token->getID() === $tokenID) |
|
98 | + if ($token->getID() === $tokenID) |
|
99 | 99 | { |
100 | 100 | return $token; |
101 | 101 | } |
@@ -10,9 +10,9 @@ |
||
10 | 10 | { |
11 | 11 | $keywords = Mailcode_Commands_Keywords::getAll(); |
12 | 12 | |
13 | - foreach($keywords as $keyword) |
|
13 | + foreach ($keywords as $keyword) |
|
14 | 14 | { |
15 | - if(strstr($this->tokenized, $keyword)) |
|
15 | + if (strstr($this->tokenized, $keyword)) |
|
16 | 16 | { |
17 | 17 | $this->registerToken('Keyword', $keyword); |
18 | 18 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | $matches = array(); |
12 | 12 | preg_match_all('/"(.*)"/sxU', $this->tokenized, $matches, PREG_PATTERN_ORDER); |
13 | 13 | |
14 | - foreach($matches[0] as $match) |
|
14 | + foreach ($matches[0] as $match) |
|
15 | 15 | { |
16 | 16 | $this->registerToken('StringLiteral', $match); |
17 | 17 | } |