@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | { |
| 74 | 74 | $val = $this->validator->createVariable()->setIndex(0); |
| 75 | 75 | |
| 76 | - if($val->isValid()) |
|
| 76 | + if ($val->isValid()) |
|
| 77 | 77 | { |
| 78 | 78 | $this->variableToken = $val->getToken(); |
| 79 | 79 | } |
@@ -90,9 +90,9 @@ discard block |
||
| 90 | 90 | { |
| 91 | 91 | $tokens = $this->params->getInfo()->createPruner()->limitToOperands()->getTokens(); |
| 92 | 92 | |
| 93 | - foreach($tokens as $token) |
|
| 93 | + foreach ($tokens as $token) |
|
| 94 | 94 | { |
| 95 | - if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 95 | + if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 96 | 96 | { |
| 97 | 97 | $this->validateOperand($token); |
| 98 | 98 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | // ensure that the operand we have in the command is one of the |
| 110 | 110 | // allowed ones. |
| 111 | - if(!in_array($sign, $allowed)) |
|
| 111 | + if (!in_array($sign, $allowed)) |
|
| 112 | 112 | { |
| 113 | 113 | $this->validationResult->makeError( |
| 114 | 114 | t('The %1$s sign is not allowed in this command.', '<code>'.$sign.'</code>'), |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | { |
| 122 | 122 | $tokens = $this->getAssignmentTokens(); |
| 123 | 123 | |
| 124 | - if(empty($tokens)) |
|
| 124 | + if (empty($tokens)) |
|
| 125 | 125 | { |
| 126 | 126 | $this->validationResult->makeError( |
| 127 | 127 | t('No value assigned to the variable.'), |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | public function getVariable() : Mailcode_Variables_Variable |
| 134 | 134 | { |
| 135 | - if($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 135 | + if ($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 136 | 136 | { |
| 137 | 137 | return $this->variableToken->getVariable(); |
| 138 | 138 | } |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $eq = array_shift($params); // equals sign |
| 157 | 157 | |
| 158 | 158 | // in case the equals sign was omitted. |
| 159 | - if(!$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 159 | + if (!$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 160 | 160 | { |
| 161 | 161 | array_unshift($params, $eq); |
| 162 | 162 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | $items = array(); |
| 172 | 172 | |
| 173 | - foreach($tokens as $token) |
|
| 173 | + foreach ($tokens as $token) |
|
| 174 | 174 | { |
| 175 | 175 | $items[] = $token->getNormalized(); |
| 176 | 176 | } |
@@ -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 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | public function getSourceVariable() : Mailcode_Variables_Variable |
| 90 | 90 | { |
| 91 | - if(isset($this->sourceVar)) |
|
| 91 | + if (isset($this->sourceVar)) |
|
| 92 | 92 | { |
| 93 | 93 | return $this->sourceVar->getVariable(); |
| 94 | 94 | } |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | |
| 103 | 103 | public function getLoopVariable() : Mailcode_Variables_Variable |
| 104 | 104 | { |
| 105 | - if(isset($this->loopVar)) |
|
| 105 | + if (isset($this->loopVar)) |
|
| 106 | 106 | { |
| 107 | 107 | return $this->loopVar->getVariable(); |
| 108 | 108 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | $this->keyword = $info->getKeywordByIndex(1); |
| 123 | 123 | $this->sourceVar = $info->getVariableByIndex(2); |
| 124 | 124 | |
| 125 | - if(!$this->loopVar || !$this->keyword || !$this->sourceVar) |
|
| 125 | + if (!$this->loopVar || !$this->keyword || !$this->sourceVar) |
|
| 126 | 126 | { |
| 127 | 127 | $this->validationResult->makeError( |
| 128 | 128 | t('Not a valid for loop.').' '.t('Is the %1$s keyword missing?', 'in:'), |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | protected function validateSyntax_keyword() : void |
| 137 | 137 | { |
| 138 | - if($this->keyword->isForIn()) |
|
| 138 | + if ($this->keyword->isForIn()) |
|
| 139 | 139 | { |
| 140 | 140 | return; |
| 141 | 141 | } |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | |
| 149 | 149 | protected function validateSyntax_variable_names() : void |
| 150 | 150 | { |
| 151 | - if($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName()) |
|
| 151 | + if ($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName()) |
|
| 152 | 152 | { |
| 153 | 153 | return; |
| 154 | 154 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * @param string $formatString A date format string, or empty string for default. |
| 48 | 48 | * @return Mailcode_Commands_Command_ShowDate |
| 49 | 49 | */ |
| 50 | - public static function showDate(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowDate |
|
| 50 | + public static function showDate(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowDate |
|
| 51 | 51 | { |
| 52 | 52 | return self::$commandSets->show()->showDate($variableName, $formatString); |
| 53 | 53 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | * |
| 75 | 75 | * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED |
| 76 | 76 | */ |
| 77 | - public static function setVar(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable |
|
| 77 | + public static function setVar(string $variableName, string $value, bool $quoteValue = true) : Mailcode_Commands_Command_SetVariable |
|
| 78 | 78 | { |
| 79 | 79 | return self::$commandSets->set()->setVar($variableName, $value, $quoteValue); |
| 80 | 80 | } |
@@ -107,12 +107,12 @@ discard block |
||
| 107 | 107 | return self::$commandSets->if()->end(); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public static function if(string $condition, string $type='') : Mailcode_Commands_Command_If |
|
| 110 | + public static function if (string $condition, string $type = '') : Mailcode_Commands_Command_If |
|
| 111 | 111 | { |
| 112 | 112 | return self::$commandSets->if()->if($condition, $type); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
| 115 | + public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
| 116 | 116 | { |
| 117 | 117 | return self::$commandSets->if()->ifVar($variable, $operand, $value, $quoteValue); |
| 118 | 118 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | return self::$commandSets->if()->ifVarString($variable, $operand, $value); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - public static function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
| 125 | + public static function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
| 126 | 126 | { |
| 127 | 127 | return self::$commandSets->if()->ifVarEquals($variable, $value, $quoteValue); |
| 128 | 128 | } |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | return self::$commandSets->if()->ifVarEqualsString($variable, $value); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
| 135 | + public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
| 136 | 136 | { |
| 137 | 137 | return self::$commandSets->if()->ifVarNotEquals($variable, $value, $quoteValue); |
| 138 | 138 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | return self::$commandSets->if()->ifVarNotEqualsString($variable, $value); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - public static function elseIf(string $condition, string $type='') : Mailcode_Commands_Command_ElseIf |
|
| 145 | + public static function elseIf (string $condition, string $type = '') : Mailcode_Commands_Command_ElseIf |
|
| 146 | 146 | { |
| 147 | 147 | return self::$commandSets->elseIf()->elseIf($condition, $type); |
| 148 | 148 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | return self::$commandSets->elseIf()->elseIfNotEmpty($variable); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 160 | + public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 161 | 161 | { |
| 162 | 162 | return self::$commandSets->elseIf()->elseIfVar($variable, $operand, $value, $quoteValue); |
| 163 | 163 | } |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | return self::$commandSets->elseIf()->elseIfVarString($variable, $operand, $value); |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 170 | + public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 171 | 171 | { |
| 172 | 172 | return self::$commandSets->elseIf()->elseIfVarEquals($variable, $value, $quoteValue); |
| 173 | 173 | } |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | return self::$commandSets->elseIf()->elseIfVarEqualsString($variable, $value); |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 180 | + public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
| 181 | 181 | { |
| 182 | 182 | return self::$commandSets->elseIf()->elseIfVarNotEquals($variable, $value, $quoteValue); |
| 183 | 183 | } |
@@ -187,27 +187,27 @@ discard block |
||
| 187 | 187 | return self::$commandSets->elseIf()->elseIfVarNotEqualsString($variable, $value); |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - public static function ifBeginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_BeginsWith |
|
| 190 | + public static function ifBeginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_BeginsWith |
|
| 191 | 191 | { |
| 192 | 192 | return self::$commandSets->if()->ifBeginsWith($variable, $search, $caseInsensitive); |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - public static function ifEndsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_EndsWith |
|
| 195 | + public static function ifEndsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_EndsWith |
|
| 196 | 196 | { |
| 197 | 197 | return self::$commandSets->if()->ifEndsWith($variable, $search, $caseInsensitive); |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - public static function elseIfBeginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 200 | + public static function elseIfBeginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
| 201 | 201 | { |
| 202 | 202 | return self::$commandSets->elseIf()->elseIfBeginsWith($variable, $search, $caseInsensitive); |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - public static function elseIfEndsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 205 | + public static function elseIfEndsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
| 206 | 206 | { |
| 207 | 207 | return self::$commandSets->elseIf()->elseIfEndsWith($variable, $search, $caseInsensitive); |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - public static function ifContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
| 210 | + public static function ifContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
| 211 | 211 | { |
| 212 | 212 | return self::$commandSets->if()->ifContains($variable, array($search), $caseInsensitive); |
| 213 | 213 | } |
@@ -220,12 +220,12 @@ discard block |
||
| 220 | 220 | * @param bool $caseInsensitive |
| 221 | 221 | * @return Mailcode_Commands_Command_If_Contains |
| 222 | 222 | */ |
| 223 | - public static function ifContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
| 223 | + public static function ifContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
| 224 | 224 | { |
| 225 | 225 | return self::$commandSets->if()->ifContains($variable, $searchTerms, $caseInsensitive); |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - public static function elseIfContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 228 | + public static function elseIfContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 229 | 229 | { |
| 230 | 230 | return self::$commandSets->elseIf()->elseIfContains($variable, array($search), $caseInsensitive); |
| 231 | 231 | } |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | * @param bool $caseInsensitive |
| 239 | 239 | * @return Mailcode_Commands_Command_ElseIf_Contains |
| 240 | 240 | */ |
| 241 | - public static function elseIfContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 241 | + public static function elseIfContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
| 242 | 242 | { |
| 243 | 243 | return self::$commandSets->elseIf()->elseIfContains($variable, $searchTerms, $caseInsensitive); |
| 244 | 244 | } |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | return self::$commandSets->if()->ifNotEmpty($variable); |
| 254 | 254 | } |
| 255 | 255 | |
| 256 | - public static function for(string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
| 256 | + public static function for (string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
| 257 | 257 | { |
| 258 | 258 | return self::$commandSets->misc()->for($sourceVariable, $loopVariable); |
| 259 | 259 | } |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | |
| 294 | 294 | public static function init() : void |
| 295 | 295 | { |
| 296 | - if(!isset(self::$commandSets)) |
|
| 296 | + if (!isset(self::$commandSets)) |
|
| 297 | 297 | { |
| 298 | 298 | self::$commandSets = new Mailcode_Factory_CommandSets(); |
| 299 | 299 | } |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | |
| 33 | 33 | public function requiresAdjustment(): bool |
| 34 | 34 | { |
| 35 | - if(!parent::requiresAdjustment()) |
|
| 35 | + if (!parent::requiresAdjustment()) |
|
| 36 | 36 | { |
| 37 | 37 | return false; |
| 38 | 38 | } |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | |
| 41 | 41 | public function setTemplate(string $template) : void |
| 42 | 42 | { |
| 43 | - if(substr_count($template, '%s') !== 1) |
|
| 43 | + if (substr_count($template, '%s') !== 1) |
|
| 44 | 44 | { |
| 45 | 45 | throw new Mailcode_Exception( |
| 46 | 46 | 'Invalid tag template', |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | |
| 132 | 132 | public function applyFormatting() : void |
| 133 | 133 | { |
| 134 | - if($this->applied) |
|
| 134 | + if ($this->applied) |
|
| 135 | 135 | { |
| 136 | 136 | return; |
| 137 | 137 | } |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | |
| 147 | 147 | private function applyFormatTypes() : void |
| 148 | 148 | { |
| 149 | - foreach($this->formatters as $formatter) |
|
| 149 | + foreach ($this->formatters as $formatter) |
|
| 150 | 150 | { |
| 151 | - if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_FormatType) |
|
| 151 | + if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_FormatType) |
|
| 152 | 152 | { |
| 153 | 153 | $formatter->format(); |
| 154 | 154 | } |
@@ -157,9 +157,9 @@ discard block |
||
| 157 | 157 | |
| 158 | 158 | private function applyReplaceTypes() : void |
| 159 | 159 | { |
| 160 | - foreach($this->formatters as $formatter) |
|
| 160 | + foreach ($this->formatters as $formatter) |
|
| 161 | 161 | { |
| 162 | - if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_ReplacerType) |
|
| 162 | + if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_ReplacerType) |
|
| 163 | 163 | { |
| 164 | 164 | $formatter->replace(); |
| 165 | 165 | } |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | |
| 169 | 169 | private function validateFormatters() : void |
| 170 | 170 | { |
| 171 | - if(empty($this->formatters)) |
|
| 171 | + if (empty($this->formatters)) |
|
| 172 | 172 | { |
| 173 | 173 | throw new Mailcode_Exception( |
| 174 | 174 | 'No formatters selected', |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | $amount = $this->countReplacers(); |
| 181 | 181 | |
| 182 | - if($amount > 1) |
|
| 182 | + if ($amount > 1) |
|
| 183 | 183 | { |
| 184 | 184 | throw new Mailcode_Exception( |
| 185 | 185 | 'More than one replacer formatter selected', |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | // by default, at minimum the normalized formatter must be selected. |
| 192 | - if($amount === 0) |
|
| 192 | + if ($amount === 0) |
|
| 193 | 193 | { |
| 194 | 194 | $this->replaceWithNormalized(); |
| 195 | 195 | } |
@@ -204,9 +204,9 @@ discard block |
||
| 204 | 204 | { |
| 205 | 205 | $count = 0; |
| 206 | 206 | |
| 207 | - foreach($this->formatters as $formatter) |
|
| 207 | + foreach ($this->formatters as $formatter) |
|
| 208 | 208 | { |
| 209 | - if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_ReplacerType) |
|
| 209 | + if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_ReplacerType) |
|
| 210 | 210 | { |
| 211 | 211 | $count++; |
| 212 | 212 | } |
@@ -88,12 +88,12 @@ discard block |
||
| 88 | 88 | public function updateString(string $subject) : bool |
| 89 | 89 | { |
| 90 | 90 | // avoid triggering an update if there are no changes in the string |
| 91 | - if($subject === $this->subject) |
|
| 91 | + if ($subject === $this->subject) |
|
| 92 | 92 | { |
| 93 | 93 | return false; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if($this->updating) |
|
| 96 | + if ($this->updating) |
|
| 97 | 97 | { |
| 98 | 98 | throw new Mailcode_Exception( |
| 99 | 99 | 'Cannot modify subject string during update', |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | $this->subject = $subject; |
| 108 | 108 | $this->length = mb_strlen($this->subject); |
| 109 | 109 | |
| 110 | - foreach($this->listeners as $listener) |
|
| 110 | + foreach ($this->listeners as $listener) |
|
| 111 | 111 | { |
| 112 | 112 | $listener($this); |
| 113 | 113 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | { |
| 143 | 143 | self::$listenerCounter++; |
| 144 | 144 | |
| 145 | - if(!is_callable($callback)) |
|
| 145 | + if (!is_callable($callback)) |
|
| 146 | 146 | { |
| 147 | 147 | throw new Mailcode_Exception( |
| 148 | 148 | 'Not a valid callable', |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | */ |
| 173 | 173 | public function removeListener(int $listenerID) : void |
| 174 | 174 | { |
| 175 | - if(isset($this->listeners[$listenerID])) |
|
| 175 | + if (isset($this->listeners[$listenerID])) |
|
| 176 | 176 | { |
| 177 | 177 | unset($this->listeners[$listenerID]); |
| 178 | 178 | } |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | return mb_strpos($this->subject, $needle); |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - public function getSubstr(int $start, ?int $length=null) : string |
|
| 206 | + public function getSubstr(int $start, ?int $length = null) : string |
|
| 207 | 207 | { |
| 208 | 208 | return mb_substr($this->subject, $start, $length); |
| 209 | 209 | } |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | { |
| 35 | 35 | $locations = $this->resolveLocations(); |
| 36 | 36 | |
| 37 | - foreach($locations as $location) |
|
| 37 | + foreach ($locations as $location) |
|
| 38 | 38 | { |
| 39 | 39 | $location->format(); |
| 40 | 40 | |