@@ -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" |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $total = count($matches[0]); |
| 80 | 80 | |
| 81 | - for($i=0; $i < $total; $i++) |
|
| 81 | + for ($i = 0; $i < $total; $i++) |
|
| 82 | 82 | { |
| 83 | 83 | $match = $this->parseMatch($matches, $i); |
| 84 | 84 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | protected function prepareString(string $subject) : string |
| 92 | 92 | { |
| 93 | - if(!ConvertHelper::isStringHTML($subject)) |
|
| 93 | + if (!ConvertHelper::isStringHTML($subject)) |
|
| 94 | 94 | { |
| 95 | 95 | return $subject; |
| 96 | 96 | } |
@@ -140,17 +140,17 @@ discard block |
||
| 140 | 140 | private function handleNesting(Mailcode_Commands_Command $cmd) : void |
| 141 | 141 | { |
| 142 | 142 | // Set the command's parent from the stack, if any is present. |
| 143 | - if(!empty($this->stack)) |
|
| 143 | + if (!empty($this->stack)) |
|
| 144 | 144 | { |
| 145 | 145 | $cmd->setParent($this->stack[array_key_last($this->stack)]); |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | // Handle opening and closing commands, adding and removing from the stack. |
| 149 | - if($cmd instanceof Mailcode_Commands_Command_Type_Opening) |
|
| 149 | + if ($cmd instanceof Mailcode_Commands_Command_Type_Opening) |
|
| 150 | 150 | { |
| 151 | 151 | $this->stack[] = $cmd; |
| 152 | 152 | } |
| 153 | - else if($cmd instanceof Mailcode_Commands_Command_Type_Closing) |
|
| 153 | + else if ($cmd instanceof Mailcode_Commands_Command_Type_Closing) |
|
| 154 | 154 | { |
| 155 | 155 | array_pop($this->stack); |
| 156 | 156 | } |
@@ -177,16 +177,16 @@ discard block |
||
| 177 | 177 | // 5 = parameter type command, type |
| 178 | 178 | // 6 = parameter type command, params |
| 179 | 179 | |
| 180 | - if(!empty($matches[1][$index])) |
|
| 180 | + if (!empty($matches[1][$index])) |
|
| 181 | 181 | { |
| 182 | 182 | $name = $matches[1][$index]; |
| 183 | 183 | } |
| 184 | - else if(!empty($matches[2][$index])) |
|
| 184 | + else if (!empty($matches[2][$index])) |
|
| 185 | 185 | { |
| 186 | 186 | $name = $matches[2][$index]; |
| 187 | 187 | $params = $matches[3][$index]; |
| 188 | 188 | } |
| 189 | - else if(!empty($matches[4][$index])) |
|
| 189 | + else if (!empty($matches[4][$index])) |
|
| 190 | 190 | { |
| 191 | 191 | $name = $matches[4][$index]; |
| 192 | 192 | $type = $matches[5][$index]; |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | * @param bool $freeform |
| 223 | 223 | * @return Mailcode_Parser_Statement |
| 224 | 224 | */ |
| 225 | - public function createStatement(string $statement, bool $freeform=false) : Mailcode_Parser_Statement |
|
| 225 | + public function createStatement(string $statement, bool $freeform = false) : Mailcode_Parser_Statement |
|
| 226 | 226 | { |
| 227 | 227 | return new Mailcode_Parser_Statement($statement, $freeform); |
| 228 | 228 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | $this->instantiator->checkCommand($cmd); |
| 36 | 36 | |
| 37 | - if($cmd instanceof Mailcode_Commands_Command_Comment) |
|
| 37 | + if ($cmd instanceof Mailcode_Commands_Command_Comment) |
|
| 38 | 38 | { |
| 39 | 39 | return $cmd; |
| 40 | 40 | } |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | throw $this->instantiator->exceptionUnexpectedType('Comment', $cmd); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function for(string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
| 45 | + public function for (string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
| 46 | 46 | { |
| 47 | 47 | $sourceVariable = '$'.ltrim($sourceVariable, '$'); |
| 48 | 48 | $loopVariable = '$'.ltrim($loopVariable, '$'); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | $this->instantiator->checkCommand($cmd); |
| 66 | 66 | |
| 67 | - if($cmd instanceof Mailcode_Commands_Command_For) |
|
| 67 | + if ($cmd instanceof Mailcode_Commands_Command_For) |
|
| 68 | 68 | { |
| 69 | 69 | return $cmd; |
| 70 | 70 | } |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $this->instantiator->checkCommand($cmd); |
| 91 | 91 | |
| 92 | - if($cmd instanceof Mailcode_Commands_Command_Code) |
|
| 92 | + if ($cmd instanceof Mailcode_Commands_Command_Code) |
|
| 93 | 93 | { |
| 94 | 94 | return $cmd; |
| 95 | 95 | } |
@@ -20,11 +20,11 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class Mailcode_Factory_Instantiator |
| 22 | 22 | { |
| 23 | - public function buildIf(string $ifType, string $params, string $type='') : Mailcode_Commands_IfBase |
|
| 23 | + public function buildIf(string $ifType, string $params, string $type = '') : Mailcode_Commands_IfBase |
|
| 24 | 24 | { |
| 25 | 25 | $stringType = $type; |
| 26 | 26 | |
| 27 | - if(!empty($type)) |
|
| 27 | + if (!empty($type)) |
|
| 28 | 28 | { |
| 29 | 29 | $stringType = ' '.$type; |
| 30 | 30 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | $this->checkCommand($command); |
| 45 | 45 | |
| 46 | - if($command instanceof Mailcode_Commands_IfBase) |
|
| 46 | + if ($command instanceof Mailcode_Commands_IfBase) |
|
| 47 | 47 | { |
| 48 | 48 | return $command; |
| 49 | 49 | } |
@@ -51,9 +51,9 @@ discard block |
||
| 51 | 51 | throw $this->exceptionUnexpectedType('IfBase', $command); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_IfBase |
|
| 54 | + public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_IfBase |
|
| 55 | 55 | { |
| 56 | - if($quoteValue) |
|
| 56 | + if ($quoteValue) |
|
| 57 | 57 | { |
| 58 | 58 | $value = $this->quoteString($value); |
| 59 | 59 | } |
@@ -85,11 +85,11 @@ discard block |
||
| 85 | 85 | * @param bool $caseInsensitive |
| 86 | 86 | * @return Mailcode_Commands_IfBase |
| 87 | 87 | */ |
| 88 | - public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 88 | + public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 89 | 89 | { |
| 90 | 90 | $keyword = ' '; |
| 91 | 91 | |
| 92 | - if($caseInsensitive) |
|
| 92 | + if ($caseInsensitive) |
|
| 93 | 93 | { |
| 94 | 94 | $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE; |
| 95 | 95 | } |
@@ -104,12 +104,12 @@ discard block |
||
| 104 | 104 | return $this->buildIf($ifType, $condition, 'contains'); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 107 | + public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 108 | 108 | { |
| 109 | 109 | return $this->buildIfSearch($ifType, 'begins-with', $variable, $search, $caseInsensitive); |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 112 | + public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 113 | 113 | { |
| 114 | 114 | return $this->buildIfSearch($ifType, 'ends-with', $variable, $search, $caseInsensitive); |
| 115 | 115 | } |
@@ -159,11 +159,11 @@ discard block |
||
| 159 | 159 | ); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
| 162 | + private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
| 163 | 163 | { |
| 164 | 164 | $keyword = ' '; |
| 165 | 165 | |
| 166 | - if($caseInsensitive) |
|
| 166 | + if ($caseInsensitive) |
|
| 167 | 167 | { |
| 168 | 168 | $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE; |
| 169 | 169 | } |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | public function checkCommand(Mailcode_Commands_Command $command) : void |
| 194 | 194 | { |
| 195 | - if($command->isValid()) |
|
| 195 | + if ($command->isValid()) |
|
| 196 | 196 | { |
| 197 | 197 | return; |
| 198 | 198 | } |
@@ -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 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | public function protectContent(string $string, Mailcode_Parser_Safeguard_Placeholder $open, Mailcode_Parser_Safeguard_Placeholder $end) : string |
| 26 | 26 | { |
| 27 | - if(!$end->getCommand() instanceof Mailcode_Commands_Command_End) |
|
| 27 | + if (!$end->getCommand() instanceof Mailcode_Commands_Command_End) |
|
| 28 | 28 | { |
| 29 | 29 | throw new Mailcode_Exception( |
| 30 | 30 | 'Invalid commands nesting', |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | $start = strpos($string, $open->getReplacementText()) + $open->getReplacementLength(); |
| 37 | 37 | $end = strpos($string, $end->getReplacementText()); |
| 38 | 38 | |
| 39 | - $content = substr($string, $start, ($end-$start)); |
|
| 39 | + $content = substr($string, $start, ($end - $start)); |
|
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | 42 | echo PHP_EOL; |
@@ -34,9 +34,9 @@ discard block |
||
| 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 |
||
| 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 | { |