@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | private function stripStyleTags() : void |
81 | 81 | { |
82 | - if(!ConvertHelper::isStringHTML($this->subject)) |
|
82 | + if (!ConvertHelper::isStringHTML($this->subject)) |
|
83 | 83 | { |
84 | 84 | return; |
85 | 85 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | private function escapeRegexBracketMatch(string $subject, string $needle) : string |
95 | 95 | { |
96 | - $replacement = str_replace( |
|
96 | + $replacement = str_replace( |
|
97 | 97 | array('{', '}'), |
98 | 98 | array('\{', '\}'), |
99 | 99 | $needle |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | $this->instantiator->checkCommand($cmd); |
38 | 38 | |
39 | - if($cmd instanceof Mailcode_Commands_Command_ShowSnippet) |
|
39 | + if ($cmd instanceof Mailcode_Commands_Command_ShowSnippet) |
|
40 | 40 | { |
41 | 41 | return $cmd; |
42 | 42 | } |
@@ -33,21 +33,21 @@ discard block |
||
33 | 33 | * @return Mailcode_Commands_Command_ShowURL |
34 | 34 | * @throws Mailcode_Factory_Exception |
35 | 35 | */ |
36 | - public function create(string $url, ?string $trackingID=null, array $queryParams=array()) : Mailcode_Commands_Command_ShowURL |
|
36 | + public function create(string $url, ?string $trackingID = null, array $queryParams = array()) : Mailcode_Commands_Command_ShowURL |
|
37 | 37 | { |
38 | 38 | $contentID = PreParser::storeContent($url); |
39 | 39 | |
40 | 40 | $params = array(); |
41 | 41 | $params[] = (string)$contentID; |
42 | 42 | |
43 | - if($trackingID !== null) |
|
43 | + if ($trackingID !== null) |
|
44 | 44 | { |
45 | 45 | $params[] = sprintf('"%s"', $trackingID); |
46 | 46 | } |
47 | 47 | |
48 | - if(!empty($queryParams)) |
|
48 | + if (!empty($queryParams)) |
|
49 | 49 | { |
50 | - foreach($queryParams as $name => $value) |
|
50 | + foreach ($queryParams as $name => $value) |
|
51 | 51 | { |
52 | 52 | $params[] = sprintf( |
53 | 53 | '"%s=%s"', |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | $this->instantiator->checkCommand($cmd); |
70 | 70 | |
71 | - if($cmd instanceof Mailcode_Commands_Command_ShowURL) |
|
71 | + if ($cmd instanceof Mailcode_Commands_Command_ShowURL) |
|
72 | 72 | { |
73 | 73 | return $cmd; |
74 | 74 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @return Mailcode_Commands_Command_ShowPhone |
36 | 36 | * @throws Mailcode_Factory_Exception |
37 | 37 | */ |
38 | - public function create(string $variableName, string $sourceFormat, string $urlEncoding=Mailcode_Factory::URL_ENCODING_NONE) : Mailcode_Commands_Command_ShowPhone |
|
38 | + public function create(string $variableName, string $sourceFormat, string $urlEncoding = Mailcode_Factory::URL_ENCODING_NONE) : Mailcode_Commands_Command_ShowPhone |
|
39 | 39 | { |
40 | 40 | $variableName = $this->instantiator->filterVariableName($variableName); |
41 | 41 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $this->instantiator->checkCommand($cmd); |
59 | 59 | $this->instantiator->setEncoding($cmd, $urlEncoding); |
60 | 60 | |
61 | - if($cmd instanceof Mailcode_Commands_Command_ShowPhone) |
|
61 | + if ($cmd instanceof Mailcode_Commands_Command_ShowPhone) |
|
62 | 62 | { |
63 | 63 | return $cmd; |
64 | 64 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | class Number extends Mailcode_Factory_CommandSets_Set |
25 | 25 | { |
26 | - public function create(string $variableName, string $formatString="", bool $absolute=false) : Mailcode_Commands_Command_ShowNumber |
|
26 | + public function create(string $variableName, string $formatString = "", bool $absolute = false) : Mailcode_Commands_Command_ShowNumber |
|
27 | 27 | { |
28 | 28 | $variableName = $this->instantiator->filterVariableName($variableName); |
29 | 29 | $paramsString = $this->compileNumberParams($formatString, $absolute); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | $this->instantiator->checkCommand($cmd); |
43 | 43 | |
44 | - if($cmd instanceof Mailcode_Commands_Command_ShowNumber) |
|
44 | + if ($cmd instanceof Mailcode_Commands_Command_ShowNumber) |
|
45 | 45 | { |
46 | 46 | return $cmd; |
47 | 47 | } |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | throw $this->instantiator->exceptionUnexpectedType('ShowNumber', $cmd); |
50 | 50 | } |
51 | 51 | |
52 | - private function compileNumberParams(string $formatString="", bool $absolute=false) : string |
|
52 | + private function compileNumberParams(string $formatString = "", bool $absolute = false) : string |
|
53 | 53 | { |
54 | 54 | $params = array(); |
55 | 55 | |
56 | - if(!empty($formatString)) |
|
56 | + if (!empty($formatString)) |
|
57 | 57 | { |
58 | 58 | $params[] = sprintf( |
59 | 59 | ' "%s"', |
@@ -61,12 +61,12 @@ discard block |
||
61 | 61 | ); |
62 | 62 | } |
63 | 63 | |
64 | - if($absolute) |
|
64 | + if ($absolute) |
|
65 | 65 | { |
66 | 66 | $params[] = ' absolute:'; |
67 | 67 | } |
68 | 68 | |
69 | - if(!empty($params)) |
|
69 | + if (!empty($params)) |
|
70 | 70 | { |
71 | 71 | return ' '.implode(' ', $params); |
72 | 72 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | ->getInfo() |
48 | 48 | ->getTokenByIndex(0); |
49 | 49 | |
50 | - if($contentIDToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Number) |
|
50 | + if ($contentIDToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Number) |
|
51 | 51 | { |
52 | 52 | $this->contentIDToken = $contentIDToken; |
53 | 53 | $this->loadContent(); |
@@ -62,12 +62,12 @@ discard block |
||
62 | 62 | |
63 | 63 | public function getNestedMailcode() : Mailcode_Collection |
64 | 64 | { |
65 | - if(isset($this->nestedMailcode)) |
|
65 | + if (isset($this->nestedMailcode)) |
|
66 | 66 | { |
67 | 67 | return $this->nestedMailcode; |
68 | 68 | } |
69 | 69 | |
70 | - if($this->isMailcodeEnabled()) |
|
70 | + if ($this->isMailcodeEnabled()) |
|
71 | 71 | { |
72 | 72 | $collection = Mailcode::create()->parseString($this->getContent()); |
73 | 73 | } |
@@ -85,14 +85,14 @@ discard block |
||
85 | 85 | { |
86 | 86 | $collection = $this->getNestedMailcode(); |
87 | 87 | |
88 | - if($collection->isValid()) |
|
88 | + if ($collection->isValid()) |
|
89 | 89 | { |
90 | 90 | return; |
91 | 91 | } |
92 | 92 | |
93 | 93 | $errors = $collection->getErrors(); |
94 | 94 | |
95 | - foreach($errors as $error) |
|
95 | + foreach ($errors as $error) |
|
96 | 96 | { |
97 | 97 | $this->getValidationResult()->makeError( |
98 | 98 | $error->getMessage(), |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | public function getContentID() : int |
105 | 105 | { |
106 | - if(isset($this->contentIDToken)) |
|
106 | + if (isset($this->contentIDToken)) |
|
107 | 107 | { |
108 | 108 | return (int)$this->contentIDToken->getValue(); |
109 | 109 | } |
@@ -133,13 +133,13 @@ discard block |
||
133 | 133 | { |
134 | 134 | $variables = parent::getVariables(); |
135 | 135 | |
136 | - if($this->isMailcodeEnabled()) |
|
136 | + if ($this->isMailcodeEnabled()) |
|
137 | 137 | { |
138 | 138 | $nested = $this->getNestedMailcode() |
139 | 139 | ->getVariables() |
140 | 140 | ->getAll(); |
141 | 141 | |
142 | - foreach($nested as $variable) |
|
142 | + foreach ($nested as $variable) |
|
143 | 143 | { |
144 | 144 | $variables->add($variable); |
145 | 145 | } |
@@ -45,12 +45,12 @@ |
||
45 | 45 | ->getInfo() |
46 | 46 | ->getStringLiterals(); |
47 | 47 | |
48 | - foreach($tokens as $token) |
|
48 | + foreach ($tokens as $token) |
|
49 | 49 | { |
50 | 50 | $this->searchTerms[] = $token; |
51 | 51 | } |
52 | 52 | |
53 | - if(empty($this->searchTerms)) |
|
53 | + if (empty($this->searchTerms)) |
|
54 | 54 | { |
55 | 55 | $this->validationResult->makeError( |
56 | 56 | t('No search terms found:').' '. |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $command->getID() |
64 | 64 | ); |
65 | 65 | |
66 | - if(!class_exists($class)) |
|
66 | + if (!class_exists($class)) |
|
67 | 67 | { |
68 | 68 | $class = sprintf( |
69 | 69 | 'Mailcode\Translator\Syntax\%s\%s', |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | ); |
73 | 73 | } |
74 | 74 | |
75 | - if(!class_exists($class)) |
|
75 | + if (!class_exists($class)) |
|
76 | 76 | { |
77 | 77 | throw new Mailcode_Translator_Exception( |
78 | 78 | sprintf('Unknown command %s in translator', $command->getID()), |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | $translator = new $class($command); |
88 | 88 | |
89 | - if($translator instanceof Mailcode_Translator_Command) |
|
89 | + if ($translator instanceof Mailcode_Translator_Command) |
|
90 | 90 | { |
91 | 91 | return $translator; |
92 | 92 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | { |
115 | 115 | $subject = $safeguard->makeSafe(); |
116 | 116 | |
117 | - if(!$safeguard->hasPlaceholders()) |
|
117 | + if (!$safeguard->hasPlaceholders()) |
|
118 | 118 | { |
119 | 119 | return $subject; |
120 | 120 | } |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | |
124 | 124 | $replaces = array(); |
125 | 125 | |
126 | - foreach($placeholders as $placeholder) |
|
126 | + foreach ($placeholders as $placeholder) |
|
127 | 127 | { |
128 | 128 | $command = $placeholder->getCommand(); |
129 | 129 |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | { |
48 | 48 | static $ids = array(); |
49 | 49 | |
50 | - if(empty($ids)) { |
|
50 | + if (empty($ids)) { |
|
51 | 51 | $ids = FileHelper::createFileFinder(__DIR__.'/Commands/Command') |
52 | 52 | ->getPHPClassNames(); |
53 | 53 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function getAll() : array |
67 | 67 | { |
68 | - if(!empty($this->commands)) { |
|
68 | + if (!empty($this->commands)) { |
|
69 | 69 | return $this->commands; |
70 | 70 | } |
71 | 71 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | $result = array(); |
75 | 75 | |
76 | - foreach($ids as $id) |
|
76 | + foreach ($ids as $id) |
|
77 | 77 | { |
78 | 78 | $result[] = $this->getDummyCommand($id); |
79 | 79 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | { |
99 | 99 | static $instances = array(); |
100 | 100 | |
101 | - if(!isset($instances[$id])) |
|
101 | + if (!isset($instances[$id])) |
|
102 | 102 | { |
103 | 103 | $instances[$id] = $this->createCommand($id, '__dummy', '', ''); |
104 | 104 | } |
@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | { |
120 | 120 | $items = $this->getAll(); |
121 | 121 | |
122 | - foreach($items as $item) |
|
122 | + foreach ($items as $item) |
|
123 | 123 | { |
124 | - if($item->getName() === $name) { |
|
124 | + if ($item->getName() === $name) { |
|
125 | 125 | return $item->getID(); |
126 | 126 | } |
127 | 127 | } |
@@ -154,9 +154,9 @@ discard block |
||
154 | 154 | { |
155 | 155 | $items = $this->getAll(); |
156 | 156 | |
157 | - foreach($items as $item) |
|
157 | + foreach ($items as $item) |
|
158 | 158 | { |
159 | - if($item->getName() === $name) { |
|
159 | + if ($item->getName() === $name) { |
|
160 | 160 | return true; |
161 | 161 | } |
162 | 162 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | { |
177 | 177 | $class = $this->resolveClassName($id, $type); |
178 | 178 | |
179 | - if(!class_exists($class)) |
|
179 | + if (!class_exists($class)) |
|
180 | 180 | { |
181 | 181 | throw new Mailcode_Factory_Exception( |
182 | 182 | 'No such command', |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | |
192 | 192 | $command = new $class($type, $params, $matchedString); |
193 | 193 | |
194 | - if($command instanceof Mailcode_Commands_Command) |
|
194 | + if ($command instanceof Mailcode_Commands_Command) |
|
195 | 195 | { |
196 | 196 | return $command; |
197 | 197 | } |
@@ -212,9 +212,9 @@ discard block |
||
212 | 212 | |
213 | 213 | $dummy = $this->getDummyCommand($id); |
214 | 214 | |
215 | - if($dummy->supportsType()) |
|
215 | + if ($dummy->supportsType()) |
|
216 | 216 | { |
217 | - if(empty($type)) |
|
217 | + if (empty($type)) |
|
218 | 218 | { |
219 | 219 | $type = $dummy->getDefaultType(); |
220 | 220 | } |
@@ -252,14 +252,14 @@ discard block |
||
252 | 252 | */ |
253 | 253 | private function getDummyCommand(string $id) : Mailcode_Commands_Command |
254 | 254 | { |
255 | - if(isset(self::$dummyCommands[$id])) { |
|
255 | + if (isset(self::$dummyCommands[$id])) { |
|
256 | 256 | return self::$dummyCommands[$id]; |
257 | 257 | } |
258 | 258 | |
259 | 259 | $class = 'Mailcode\Mailcode_Commands_Command_'.$id; |
260 | 260 | $cmd = new $class('__dummy'); |
261 | 261 | |
262 | - if($cmd instanceof Mailcode_Commands_Command) |
|
262 | + if ($cmd instanceof Mailcode_Commands_Command) |
|
263 | 263 | { |
264 | 264 | self::$dummyCommands[$id] = $cmd; |
265 | 265 | return $cmd; |
@@ -284,9 +284,9 @@ discard block |
||
284 | 284 | $result = array(); |
285 | 285 | $commands = $this->getAll(); |
286 | 286 | |
287 | - foreach($commands as $command) |
|
287 | + foreach ($commands as $command) |
|
288 | 288 | { |
289 | - if($command instanceof Mailcode_Interfaces_Commands_ProtectedContent) |
|
289 | + if ($command instanceof Mailcode_Interfaces_Commands_ProtectedContent) |
|
290 | 290 | { |
291 | 291 | $result[] = $command; |
292 | 292 | } |