@@ -34,7 +34,7 @@ |
||
| 34 | 34 | |
| 35 | 35 | public function getToken() : Mailcode_Parser_Statement_Tokenizer_Token_Variable |
| 36 | 36 | { |
| 37 | - if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 37 | + if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 38 | 38 | { |
| 39 | 39 | return $this->token; |
| 40 | 40 | } |
@@ -76,8 +76,7 @@ |
||
| 76 | 76 | if($val->isValid()) |
| 77 | 77 | { |
| 78 | 78 | $this->variableToken = $val->getToken(); |
| 79 | - } |
|
| 80 | - else |
|
| 79 | + } else |
|
| 81 | 80 | { |
| 82 | 81 | $this->validationResult->makeError( |
| 83 | 82 | 'The first parameter must be a variable name.', |
@@ -20,9 +20,9 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class Mailcode_Commands_Command_SetVariable extends Mailcode_Commands_Command implements Mailcode_Commands_Command_Type_Standalone |
| 22 | 22 | { |
| 23 | - /** |
|
| 24 | - * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL |
|
| 25 | + */ |
|
| 26 | 26 | private $variableToken; |
| 27 | 27 | |
| 28 | 28 | public function getName() : string |
@@ -153,9 +153,9 @@ discard block |
||
| 153 | 153 | ); |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - /** |
|
| 157 | - * @return Mailcode_Parser_Statement_Tokenizer_Token[] |
|
| 158 | - */ |
|
| 156 | + /** |
|
| 157 | + * @return Mailcode_Parser_Statement_Tokenizer_Token[] |
|
| 158 | + */ |
|
| 159 | 159 | public function getAssignmentTokens() : array |
| 160 | 160 | { |
| 161 | 161 | $params = $this->requireParams()->getInfo()->getTokens(); |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | { |
| 79 | 79 | $val = $this->getValidator()->createVariable()->setIndex(0); |
| 80 | 80 | |
| 81 | - if($val->isValid()) |
|
| 81 | + if ($val->isValid()) |
|
| 82 | 82 | { |
| 83 | 83 | $this->variableToken = $val->getToken(); |
| 84 | 84 | } |
@@ -99,9 +99,9 @@ discard block |
||
| 99 | 99 | ->limitToOperands() |
| 100 | 100 | ->getTokens(); |
| 101 | 101 | |
| 102 | - foreach($tokens as $token) |
|
| 102 | + foreach ($tokens as $token) |
|
| 103 | 103 | { |
| 104 | - if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 104 | + if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 105 | 105 | { |
| 106 | 106 | $this->validateOperand($token); |
| 107 | 107 | } |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | |
| 118 | 118 | // ensure that the operand we have in the command is one of the |
| 119 | 119 | // allowed ones. |
| 120 | - if(!in_array($sign, $allowed)) |
|
| 120 | + if (!in_array($sign, $allowed)) |
|
| 121 | 121 | { |
| 122 | 122 | $this->validationResult->makeError( |
| 123 | 123 | t('The %1$s sign is not allowed in this command.', '<code>'.$sign.'</code>'), |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | { |
| 131 | 131 | $tokens = $this->getAssignmentTokens(); |
| 132 | 132 | |
| 133 | - if(empty($tokens)) |
|
| 133 | + if (empty($tokens)) |
|
| 134 | 134 | { |
| 135 | 135 | $this->validationResult->makeError( |
| 136 | 136 | t('No value assigned to the variable.'), |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | public function getVariable() : Mailcode_Variables_Variable |
| 143 | 143 | { |
| 144 | - if($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 144 | + if ($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable) |
|
| 145 | 145 | { |
| 146 | 146 | return $this->variableToken->getVariable(); |
| 147 | 147 | } |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | $eq = array_shift($params); // equals sign |
| 166 | 166 | |
| 167 | 167 | // in case the equals sign was omitted. |
| 168 | - if($eq !== null && !$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 168 | + if ($eq !== null && !$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 169 | 169 | { |
| 170 | 170 | array_unshift($params, $eq); |
| 171 | 171 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | $items = array(); |
| 181 | 181 | |
| 182 | - foreach($tokens as $token) |
|
| 182 | + foreach ($tokens as $token) |
|
| 183 | 183 | { |
| 184 | 184 | $items[] = $token->getNormalized(); |
| 185 | 185 | } |
@@ -36,9 +36,9 @@ |
||
| 36 | 36 | ); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * @return array<string> |
|
| 41 | - */ |
|
| 39 | + /** |
|
| 40 | + * @return array<string> |
|
| 41 | + */ |
|
| 42 | 42 | protected function getAllowedOperands() : array |
| 43 | 43 | { |
| 44 | 44 | return Mailcode_Parser_Statement_Tokenizer_Token_Operand::getComparisonSigns(); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | $val = $this->validator->createStringLiteral(); |
| 35 | 35 | |
| 36 | - if($val->isValid()) |
|
| 36 | + if ($val->isValid()) |
|
| 37 | 37 | { |
| 38 | 38 | $this->searchTerm = $val->getToken(); |
| 39 | 39 | } |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | public function getSearchTerm() : string |
| 50 | 50 | { |
| 51 | - if($this->searchTerm instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral) |
|
| 51 | + if ($this->searchTerm instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral) |
|
| 52 | 52 | { |
| 53 | 53 | return $this->searchTerm->getNormalized(); |
| 54 | 54 | } |
@@ -36,8 +36,7 @@ |
||
| 36 | 36 | if($val->isValid()) |
| 37 | 37 | { |
| 38 | 38 | $this->searchTerm = $val->getToken(); |
| 39 | - } |
|
| 40 | - else |
|
| 39 | + } else |
|
| 41 | 40 | { |
| 42 | 41 | $this->validationResult->makeError( |
| 43 | 42 | t('No search term specified.'), |
@@ -24,9 +24,9 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | trait Mailcode_Traits_Commands_Validation_Value |
| 26 | 26 | { |
| 27 | - /** |
|
| 28 | - * @var Mailcode_Parser_Statement_Tokenizer_ValueInterface|NULL |
|
| 29 | - */ |
|
| 27 | + /** |
|
| 28 | + * @var Mailcode_Parser_Statement_Tokenizer_ValueInterface|NULL |
|
| 29 | + */ |
|
| 30 | 30 | protected $valueToken; |
| 31 | 31 | |
| 32 | 32 | protected function validateSyntax_value() : void |
@@ -46,11 +46,11 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * Retrieves the variable being compared. |
|
| 51 | - * |
|
| 52 | - * @return string |
|
| 53 | - */ |
|
| 49 | + /** |
|
| 50 | + * Retrieves the variable being compared. |
|
| 51 | + * |
|
| 52 | + * @return string |
|
| 53 | + */ |
|
| 54 | 54 | public function getValue() : string |
| 55 | 55 | { |
| 56 | 56 | if($this->valueToken instanceof Mailcode_Parser_Statement_Tokenizer_ValueInterface) |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | { |
| 34 | 34 | $var = $this->validator->createValue(); |
| 35 | 35 | |
| 36 | - if($var->isValid()) |
|
| 36 | + if ($var->isValid()) |
|
| 37 | 37 | { |
| 38 | 38 | $this->valueToken = $var->getToken(); |
| 39 | 39 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function getValue() : string |
| 55 | 55 | { |
| 56 | - if($this->valueToken instanceof Mailcode_Parser_Statement_Tokenizer_ValueInterface) |
|
| 56 | + if ($this->valueToken instanceof Mailcode_Parser_Statement_Tokenizer_ValueInterface) |
|
| 57 | 57 | { |
| 58 | 58 | return $this->valueToken->getValue(); |
| 59 | 59 | } |
@@ -36,8 +36,7 @@ |
||
| 36 | 36 | if($var->isValid()) |
| 37 | 37 | { |
| 38 | 38 | $this->valueToken = $var->getToken(); |
| 39 | - } |
|
| 40 | - else |
|
| 39 | + } else |
|
| 41 | 40 | { |
| 42 | 41 | $this->validationResult->makeError( |
| 43 | 42 | t('No value has been specified.'), |
@@ -25,14 +25,14 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | trait Mailcode_Traits_Commands_Validation_Operand |
| 27 | 27 | { |
| 28 | - /** |
|
| 29 | - * @var Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL |
|
| 30 | - */ |
|
| 28 | + /** |
|
| 29 | + * @var Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL |
|
| 30 | + */ |
|
| 31 | 31 | protected $operandToken; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @return string[] |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @return string[] |
|
| 35 | + */ |
|
| 36 | 36 | abstract protected function getAllowedOperands() : array; |
| 37 | 37 | |
| 38 | 38 | protected function validateSyntax_operand() : void |
@@ -78,11 +78,11 @@ discard block |
||
| 78 | 78 | ); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - /** |
|
| 82 | - * Retrieves the operand sign. |
|
| 83 | - * |
|
| 84 | - * @return string |
|
| 85 | - */ |
|
| 81 | + /** |
|
| 82 | + * Retrieves the operand sign. |
|
| 83 | + * |
|
| 84 | + * @return string |
|
| 85 | + */ |
|
| 86 | 86 | public function getSign() : string |
| 87 | 87 | { |
| 88 | 88 | return $this->getOperand()->getSign(); |
@@ -39,9 +39,9 @@ discard block |
||
| 39 | 39 | { |
| 40 | 40 | $var = $this->validator->createOperand(); |
| 41 | 41 | |
| 42 | - if($var->isValid()) |
|
| 42 | + if ($var->isValid()) |
|
| 43 | 43 | { |
| 44 | - if(in_array($var->getSign(), $this->getAllowedOperands())) |
|
| 44 | + if (in_array($var->getSign(), $this->getAllowedOperands())) |
|
| 45 | 45 | { |
| 46 | 46 | $this->operandToken = $var->getToken(); |
| 47 | 47 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | public function getOperand() : Mailcode_Parser_Statement_Tokenizer_Token_Operand |
| 68 | 68 | { |
| 69 | - if($this->operandToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 69 | + if ($this->operandToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand) |
|
| 70 | 70 | { |
| 71 | 71 | return $this->operandToken; |
| 72 | 72 | } |
@@ -44,8 +44,7 @@ discard block |
||
| 44 | 44 | if(in_array($var->getSign(), $this->getAllowedOperands())) |
| 45 | 45 | { |
| 46 | 46 | $this->operandToken = $var->getToken(); |
| 47 | - } |
|
| 48 | - else |
|
| 47 | + } else |
|
| 49 | 48 | { |
| 50 | 49 | $this->validationResult->makeError( |
| 51 | 50 | t('Invalid operand %1$s.', $var->getSign()).' '. |
@@ -54,8 +53,7 @@ discard block |
||
| 54 | 53 | Mailcode_Commands_CommonConstants::VALIDATION_INVALID_OPERAND |
| 55 | 54 | ); |
| 56 | 55 | } |
| 57 | - } |
|
| 58 | - else |
|
| 56 | + } else |
|
| 59 | 57 | { |
| 60 | 58 | $this->validationResult->makeError( |
| 61 | 59 | t('No operand has been specified.'), |
@@ -36,8 +36,7 @@ |
||
| 36 | 36 | if($var->isValid()) |
| 37 | 37 | { |
| 38 | 38 | $this->variableToken = $var->getToken(); |
| 39 | - } |
|
| 40 | - else |
|
| 39 | + } else |
|
| 41 | 40 | { |
| 42 | 41 | $this->validationResult->makeError( |
| 43 | 42 | t('No variable has been specified.'), |
@@ -24,9 +24,9 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | trait Mailcode_Traits_Commands_Validation_Variable |
| 26 | 26 | { |
| 27 | - /** |
|
| 28 | - * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL |
|
| 29 | - */ |
|
| 27 | + /** |
|
| 28 | + * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL |
|
| 29 | + */ |
|
| 30 | 30 | protected $variableToken; |
| 31 | 31 | |
| 32 | 32 | protected function validateSyntax_variable() : void |
@@ -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 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function getVariable() : Mailcode_Variables_Variable |
| 70 | 70 | { |
| 71 | - if(isset($this->variableToken)) |
|
| 71 | + if (isset($this->variableToken)) |
|
| 72 | 72 | { |
| 73 | 73 | return $this->variableToken->getVariable(); |
| 74 | 74 | } |
@@ -116,12 +116,12 @@ discard block |
||
| 116 | 116 | { |
| 117 | 117 | $parent = $subject->getParent(); |
| 118 | 118 | |
| 119 | - if($parent === null) |
|
| 119 | + if ($parent === null) |
|
| 120 | 120 | { |
| 121 | 121 | return null; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - if($parent instanceof Mailcode_Commands_Command_For) |
|
| 124 | + if ($parent instanceof Mailcode_Commands_Command_For) |
|
| 125 | 125 | { |
| 126 | 126 | return $parent; |
| 127 | 127 | } |
@@ -22,19 +22,19 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class Mailcode_Parser_Statement_Info_Pruner |
| 24 | 24 | { |
| 25 | - /** |
|
| 26 | - * @var Mailcode_Parser_Statement_Info |
|
| 27 | - */ |
|
| 25 | + /** |
|
| 26 | + * @var Mailcode_Parser_Statement_Info |
|
| 27 | + */ |
|
| 28 | 28 | private $info; |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @var string[] |
|
| 32 | - */ |
|
| 30 | + /** |
|
| 31 | + * @var string[] |
|
| 32 | + */ |
|
| 33 | 33 | private $exclude = array(); |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var string[] |
|
| 37 | - */ |
|
| 35 | + /** |
|
| 36 | + * @var string[] |
|
| 37 | + */ |
|
| 38 | 38 | private $classNames = array(); |
| 39 | 39 | |
| 40 | 40 | public function __construct(Mailcode_Parser_Statement_Info $info) |
@@ -74,12 +74,12 @@ discard block |
||
| 74 | 74 | return $this; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * Retrieves all tokens in the statement matching the |
|
| 79 | - * current criteria. |
|
| 80 | - * |
|
| 81 | - * @return Mailcode_Parser_Statement_Tokenizer_Token[] |
|
| 82 | - */ |
|
| 77 | + /** |
|
| 78 | + * Retrieves all tokens in the statement matching the |
|
| 79 | + * current criteria. |
|
| 80 | + * |
|
| 81 | + * @return Mailcode_Parser_Statement_Tokenizer_Token[] |
|
| 82 | + */ |
|
| 83 | 83 | public function getTokens() : array |
| 84 | 84 | { |
| 85 | 85 | $tokens = $this->info->getTokens(); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | { |
| 47 | 47 | $id = $token->getID(); |
| 48 | 48 | |
| 49 | - if(!in_array($id, $this->exclude)) |
|
| 49 | + if (!in_array($id, $this->exclude)) |
|
| 50 | 50 | { |
| 51 | 51 | $this->exclude[] = $id; |
| 52 | 52 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | public function limitByClassName(string $className) : Mailcode_Parser_Statement_Info_Pruner |
| 68 | 68 | { |
| 69 | - if(!in_array($className, $this->classNames)) |
|
| 69 | + if (!in_array($className, $this->classNames)) |
|
| 70 | 70 | { |
| 71 | 71 | $this->classNames[] = $className; |
| 72 | 72 | } |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | $tokens = $this->info->getTokens(); |
| 86 | 86 | $keep = array(); |
| 87 | 87 | |
| 88 | - foreach($tokens as $token) |
|
| 88 | + foreach ($tokens as $token) |
|
| 89 | 89 | { |
| 90 | - if(in_array($token->getID(), $this->exclude)) |
|
| 90 | + if (in_array($token->getID(), $this->exclude)) |
|
| 91 | 91 | { |
| 92 | 92 | continue; |
| 93 | 93 | } |
@@ -20,9 +20,9 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | class Mailcode_Commands_Command_Comment extends Mailcode_Commands_Command implements Mailcode_Commands_Command_Type_Standalone |
| 22 | 22 | { |
| 23 | - /** |
|
| 24 | - * @var string |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * @var string |
|
| 25 | + */ |
|
| 26 | 26 | private $commentString = ''; |
| 27 | 27 | |
| 28 | 28 | protected function init() : void |
@@ -80,7 +80,7 @@ |
||
| 80 | 80 | |
| 81 | 81 | protected function validateSyntax_comment() : void |
| 82 | 82 | { |
| 83 | - if(empty($this->commentString)) |
|
| 83 | + if (empty($this->commentString)) |
|
| 84 | 84 | { |
| 85 | 85 | $this->validationResult->makeError( |
| 86 | 86 | t('The comment text ist empty.'), |