@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function createSyntax(string $name) : Mailcode_Translator_Syntax |
34 | 34 | { |
35 | - if($this->syntaxExists($name)) |
|
35 | + if ($this->syntaxExists($name)) |
|
36 | 36 | { |
37 | 37 | return new Mailcode_Translator_Syntax($name); |
38 | 38 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $names = $this->getSyntaxNames(); |
60 | 60 | $result = array(); |
61 | 61 | |
62 | - foreach($names as $name) |
|
62 | + foreach ($names as $name) |
|
63 | 63 | { |
64 | 64 | $result[] = $this->createSyntax($name); |
65 | 65 | } |
@@ -70,7 +70,7 @@ |
||
70 | 70 | |
71 | 71 | protected function validateSyntax_urldeencode() : void |
72 | 72 | { |
73 | - if($this->isURLEncoded() && $this->getURLDecodeToken() !== null) |
|
73 | + if ($this->isURLEncoded() && $this->getURLDecodeToken() !== null) |
|
74 | 74 | { |
75 | 75 | $this->validationResult->makeError( |
76 | 76 | t('Cannot enable URL decoding and encoding at the same time.'), |
@@ -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 | } |
@@ -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 | } |
@@ -16,12 +16,12 @@ |
||
16 | 16 | $parts = ConvertHelper::explodeTrim($this->delimiter, $this->tokenized); |
17 | 17 | $tokens = array(); |
18 | 18 | |
19 | - foreach($parts as $part) |
|
19 | + foreach ($parts as $part) |
|
20 | 20 | { |
21 | 21 | $token = $this->getTokenByID($part); |
22 | 22 | |
23 | 23 | // if the entry is a token, simply add it. |
24 | - if($token) |
|
24 | + if ($token) |
|
25 | 25 | { |
26 | 26 | $tokens[] = $token; |
27 | 27 | } |
@@ -25,9 +25,9 @@ |
||
25 | 25 | |
26 | 26 | protected function _process() : void |
27 | 27 | { |
28 | - foreach($this->operands as $operand) |
|
28 | + foreach ($this->operands as $operand) |
|
29 | 29 | { |
30 | - if(strstr($this->tokenized, $operand)) |
|
30 | + if (strstr($this->tokenized, $operand)) |
|
31 | 31 | { |
32 | 32 | $this->registerToken('Operand', $operand); |
33 | 33 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | $matches = array(); |
12 | 12 | preg_match_all('/-*[0-9]+\s*[.,]\s*[0-9]+|-*[0-9]+/sx', $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('Number', $match); |
17 | 17 | } |