@@ -10,7 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | $vars = Mailcode::create()->findVariables($this->tokenized)->getGroupedByHash(); |
| 12 | 12 | |
| 13 | - foreach($vars as $var) |
|
| 13 | + foreach ($vars as $var) |
|
| 14 | 14 | { |
| 15 | 15 | $this->registerToken('Variable', $var->getMatchedText(), $var); |
| 16 | 16 | } |
@@ -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 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | public function protectContent(string $string, Mailcode_Parser_Safeguard_Placeholder $open, Mailcode_Parser_Safeguard_Placeholder $end) : string |
| 35 | 35 | { |
| 36 | - if(!$end->getCommand() instanceof Mailcode_Commands_Command_End) |
|
| 36 | + if (!$end->getCommand() instanceof Mailcode_Commands_Command_End) |
|
| 37 | 37 | { |
| 38 | 38 | throw new Mailcode_Exception( |
| 39 | 39 | 'Invalid commands nesting', |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $start = strpos($string, $open->getReplacementText()) + $open->getReplacementLength(); |
| 46 | 46 | $end = strpos($string, $end->getReplacementText()); |
| 47 | 47 | |
| 48 | - $content = substr($string, $start, ($end-$start)); |
|
| 48 | + $content = substr($string, $start, ($end - $start)); |
|
| 49 | 49 | |
| 50 | 50 | return $this->replaceContent($string, $content); |
| 51 | 51 | } |
@@ -56,23 +56,23 @@ |
||
| 56 | 56 | |
| 57 | 57 | private function analyzeURL(string $url) : void |
| 58 | 58 | { |
| 59 | - if(stristr($url, 'tel:')) |
|
| 59 | + if (stristr($url, 'tel:')) |
|
| 60 | 60 | { |
| 61 | 61 | return; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | $placeholders = $this->safeguard->getPlaceholders(); |
| 65 | 65 | |
| 66 | - foreach($placeholders as $placeholder) |
|
| 66 | + foreach ($placeholders as $placeholder) |
|
| 67 | 67 | { |
| 68 | 68 | $command = $placeholder->getCommand(); |
| 69 | 69 | |
| 70 | - if(!$command->supportsURLEncoding()) |
|
| 70 | + if (!$command->supportsURLEncoding()) |
|
| 71 | 71 | { |
| 72 | 72 | continue; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if(strstr($url, $placeholder->getReplacementText()) && !$command->isURLDecoded()) |
|
| 75 | + if (strstr($url, $placeholder->getReplacementText()) && !$command->isURLDecoded()) |
|
| 76 | 76 | { |
| 77 | 77 | $command->setURLEncoding(true); |
| 78 | 78 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | private function validate() : OperationResult |
| 47 | 47 | { |
| 48 | - if(empty($this->delimiter)) |
|
| 48 | + if (empty($this->delimiter)) |
|
| 49 | 49 | { |
| 50 | 50 | return $this->makeError( |
| 51 | 51 | 'Delimiters may not be empty.', |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | ); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - if(strlen($this->delimiter) < 2) |
|
| 56 | + if (strlen($this->delimiter) < 2) |
|
| 57 | 57 | { |
| 58 | 58 | return $this->makeError( |
| 59 | 59 | 'The delimiter must have at least 2 characters in length.', |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | ); |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - if(!preg_match('/\A[^0-9*].*[^0-9*]\z/x', $this->delimiter)) |
|
| 64 | + if (!preg_match('/\A[^0-9*].*[^0-9*]\z/x', $this->delimiter)) |
|
| 65 | 65 | { |
| 66 | 66 | return $this->makeError( |
| 67 | 67 | 'The delimiter may not begin or end with a number.', |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | ); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if(strstr($this->delimiter, '*') !== false) |
|
| 72 | + if (strstr($this->delimiter, '*') !== false) |
|
| 73 | 73 | { |
| 74 | 74 | return $this->makeError( |
| 75 | 75 | 'The delimiter may not contain the * character.', |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | public function throwExceptionIfInvalid() : void |
| 84 | 84 | { |
| 85 | - if($this->isValid()) { |
|
| 85 | + if ($this->isValid()) { |
|
| 86 | 86 | return; |
| 87 | 87 | } |
| 88 | 88 | |