@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $command->getID() |
65 | 65 | ); |
66 | 66 | |
67 | - if(!class_exists($class)) |
|
67 | + if (!class_exists($class)) |
|
68 | 68 | { |
69 | 69 | throw new Mailcode_Translator_Exception( |
70 | 70 | sprintf('Unknown command %s in translator', $command->getID()), |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | { |
93 | 93 | $subject = $safeguard->makeSafe(); |
94 | 94 | |
95 | - if(!$safeguard->hasPlaceholders()) |
|
95 | + if (!$safeguard->hasPlaceholders()) |
|
96 | 96 | { |
97 | 97 | return $subject; |
98 | 98 | } |
@@ -101,13 +101,13 @@ discard block |
||
101 | 101 | |
102 | 102 | $replaces = array(); |
103 | 103 | |
104 | - foreach($placeholders as $placeholder) |
|
104 | + foreach ($placeholders as $placeholder) |
|
105 | 105 | { |
106 | 106 | $command = $placeholder->getCommand(); |
107 | 107 | |
108 | 108 | $replaces[$placeholder->getReplacementText()] = $this->translateCommand($command); |
109 | 109 | |
110 | - if($command instanceof Mailcode_Interfaces_Commands_ProtectedContent) |
|
110 | + if ($command instanceof Mailcode_Interfaces_Commands_ProtectedContent) |
|
111 | 111 | { |
112 | 112 | $replaces[$command->getContentPlaceholder()] = $command->getContent(); |
113 | 113 | } |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $varName = ltrim($command->getVariableName(), '$'); |
26 | 26 | |
27 | 27 | // Automatically URL escape the variable if it's in an URL. |
28 | - if($command->isURLEncoded()) |
|
28 | + if ($command->isURLEncoded()) |
|
29 | 29 | { |
30 | 30 | return sprintf( |
31 | 31 | '${esc.url($%s)}', |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | ); |
34 | 34 | } |
35 | 35 | |
36 | - if($command->isURLDecoded()) |
|
36 | + if ($command->isURLDecoded()) |
|
37 | 37 | { |
38 | 38 | return sprintf( |
39 | 39 | '${esc.unurl($%s)}', |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $varName |
35 | 35 | ); |
36 | 36 | |
37 | - if($command->isURLEncoded()) |
|
37 | + if ($command->isURLEncoded()) |
|
38 | 38 | { |
39 | 39 | return sprintf( |
40 | 40 | '${esc.url($%s)}', |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | ); |
43 | 43 | } |
44 | 44 | |
45 | - if($command->isURLDecoded()) |
|
45 | + if ($command->isURLDecoded()) |
|
46 | 46 | { |
47 | 47 | return sprintf( |
48 | 48 | '${esc.unurl($%s)}', |
@@ -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.'), |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $tokens = $this->params->getInfo()->getTokens(); |
48 | 48 | $allowed = $this->resolveActiveTokens(); |
49 | 49 | |
50 | - if(count($tokens) > count($allowed)) |
|
50 | + if (count($tokens) > count($allowed)) |
|
51 | 51 | { |
52 | 52 | $this->validationResult->makeError( |
53 | 53 | t('Unknown parameters found:').' '. |
@@ -69,13 +69,13 @@ discard block |
||
69 | 69 | $allowed = array($this->getVariableToken()); |
70 | 70 | |
71 | 71 | $token = $this->getURLEncodeToken(); |
72 | - if($token) |
|
72 | + if ($token) |
|
73 | 73 | { |
74 | 74 | $allowed[] = $token; |
75 | 75 | } |
76 | 76 | |
77 | 77 | $token = $this->getURLDecodeToken(); |
78 | - if($token) |
|
78 | + if ($token) |
|
79 | 79 | { |
80 | 80 | $allowed[] = $token; |
81 | 81 | } |
@@ -91,7 +91,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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" |
@@ -12,5 +12,5 @@ |
||
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 | } |