@@ -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 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | private function validate() : OperationResult |
| 46 | 46 | { |
| 47 | - if(empty($this->delimiter)) |
|
| 47 | + if (empty($this->delimiter)) |
|
| 48 | 48 | { |
| 49 | 49 | return $this->makeError( |
| 50 | 50 | 'Delimiters may not be empty.', |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | ); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - if(strlen($this->delimiter) < 2) |
|
| 55 | + if (strlen($this->delimiter) < 2) |
|
| 56 | 56 | { |
| 57 | 57 | return $this->makeError( |
| 58 | 58 | 'The delimiter must have at least 2 characters in length.', |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | $encoded = urlencode($this->delimiter); |
| 64 | 64 | |
| 65 | - if($encoded !== $this->delimiter) |
|
| 65 | + if ($encoded !== $this->delimiter) |
|
| 66 | 66 | { |
| 67 | 67 | return $this->makeError( |
| 68 | 68 | 'The delimiter is not URL encoding neutral: it must not be modified by a urlencode() call.', |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | public function throwExceptionIfInvalid() : void |
| 77 | 77 | { |
| 78 | - if($this->isValid()) { |
|
| 78 | + if ($this->isValid()) { |
|
| 79 | 79 | return; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | |
| 70 | 70 | public function getReplacementText() : string |
| 71 | 71 | { |
| 72 | - if(!empty($this->replacement)) |
|
| 72 | + if (!empty($this->replacement)) |
|
| 73 | 73 | { |
| 74 | 74 | return $this->replacement; |
| 75 | 75 | } |
@@ -25,24 +25,24 @@ discard block |
||
| 25 | 25 | { |
| 26 | 26 | public const ERROR_PLACEHOLDER_TOO_LONG = 47901; |
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * @var int |
|
| 30 | - */ |
|
| 28 | + /** |
|
| 29 | + * @var int |
|
| 30 | + */ |
|
| 31 | 31 | protected $id; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @var Mailcode_Parser_Safeguard |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @var Mailcode_Parser_Safeguard |
|
| 35 | + */ |
|
| 36 | 36 | protected $safeguard; |
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * @var Mailcode_Commands_Command |
|
| 40 | - */ |
|
| 38 | + /** |
|
| 39 | + * @var Mailcode_Commands_Command |
|
| 40 | + */ |
|
| 41 | 41 | protected $command; |
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * @var string |
|
| 45 | - */ |
|
| 43 | + /** |
|
| 44 | + * @var string |
|
| 45 | + */ |
|
| 46 | 46 | protected $replacement = ''; |
| 47 | 47 | |
| 48 | 48 | public function __construct(int $id, Mailcode_Commands_Command $command, Mailcode_Parser_Safeguard $safeguard) |
@@ -104,18 +104,18 @@ discard block |
||
| 104 | 104 | return $this->command; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - /** |
|
| 108 | - * Serializes the placeholder's information into |
|
| 109 | - * an array with the following keys: |
|
| 110 | - * |
|
| 111 | - * - originalText |
|
| 112 | - * - replacementText |
|
| 113 | - * - normalizedText |
|
| 114 | - * - length |
|
| 115 | - * - id |
|
| 116 | - * |
|
| 117 | - * @return array<string,string|integer> |
|
| 118 | - */ |
|
| 107 | + /** |
|
| 108 | + * Serializes the placeholder's information into |
|
| 109 | + * an array with the following keys: |
|
| 110 | + * |
|
| 111 | + * - originalText |
|
| 112 | + * - replacementText |
|
| 113 | + * - normalizedText |
|
| 114 | + * - length |
|
| 115 | + * - id |
|
| 116 | + * |
|
| 117 | + * @return array<string,string|integer> |
|
| 118 | + */ |
|
| 119 | 119 | public function serialize() : array |
| 120 | 120 | { |
| 121 | 121 | return array( |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | |
| 70 | 70 | protected function _validateNesting() : void |
| 71 | 71 | { |
| 72 | - if($this->findParentFor($this)) |
|
| 72 | + if ($this->findParentFor($this)) |
|
| 73 | 73 | { |
| 74 | 74 | return; |
| 75 | 75 | } |
@@ -84,12 +84,12 @@ discard block |
||
| 84 | 84 | { |
| 85 | 85 | $parent = $command->getParent(); |
| 86 | 86 | |
| 87 | - if($parent === null) |
|
| 87 | + if ($parent === null) |
|
| 88 | 88 | { |
| 89 | 89 | return false; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - if($parent instanceof Mailcode_Commands_Command_For) |
|
| 92 | + if ($parent instanceof Mailcode_Commands_Command_For) |
|
| 93 | 93 | { |
| 94 | 94 | return true; |
| 95 | 95 | } |
@@ -29,12 +29,12 @@ |
||
| 29 | 29 | |
| 30 | 30 | protected function validateSyntax_params_empty() : void |
| 31 | 31 | { |
| 32 | - if(!$this->requiresParameters()) |
|
| 32 | + if (!$this->requiresParameters()) |
|
| 33 | 33 | { |
| 34 | 34 | return; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - if(empty($this->paramsString)) |
|
| 37 | + if (empty($this->paramsString)) |
|
| 38 | 38 | { |
| 39 | 39 | $this->validationResult->makeError( |
| 40 | 40 | t('Parameters have to be specified.'), |
@@ -35,14 +35,14 @@ |
||
| 35 | 35 | |
| 36 | 36 | protected function validateSyntax_type_supported() : void |
| 37 | 37 | { |
| 38 | - if(!$this->supportsType() || empty($this->type)) |
|
| 38 | + if (!$this->supportsType() || empty($this->type)) |
|
| 39 | 39 | { |
| 40 | 40 | return; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $types = $this->getSupportedTypes(); |
| 44 | 44 | |
| 45 | - if(!in_array($this->type, $types)) |
|
| 45 | + if (!in_array($this->type, $types)) |
|
| 46 | 46 | { |
| 47 | 47 | $this->validationResult->makeError( |
| 48 | 48 | t('The command addon %1$s is not supported.', $this->type).' '. |