@@ -23,12 +23,12 @@ discard block |
||
23 | 23 | */ |
24 | 24 | class Date extends Mailcode_Factory_CommandSets_Set |
25 | 25 | { |
26 | - public function create(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowDate |
|
26 | + public function create(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowDate |
|
27 | 27 | { |
28 | 28 | $variableName = $this->instantiator->filterVariableName($variableName); |
29 | 29 | |
30 | 30 | $format = ''; |
31 | - if(!empty($formatString)) |
|
31 | + if (!empty($formatString)) |
|
32 | 32 | { |
33 | 33 | $format = sprintf( |
34 | 34 | ' "%s"', |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $this->instantiator->checkCommand($cmd); |
51 | 51 | |
52 | - if($cmd instanceof Mailcode_Commands_Command_ShowDate) |
|
52 | + if ($cmd instanceof Mailcode_Commands_Command_ShowDate) |
|
53 | 53 | { |
54 | 54 | return $cmd; |
55 | 55 | } |
@@ -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 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | * @return $this |
36 | 36 | * @throws Mailcode_Exception |
37 | 37 | */ |
38 | - public function setURLDecoding(bool $decode=true) : self |
|
38 | + public function setURLDecoding(bool $decode = true) : self |
|
39 | 39 | { |
40 | 40 | return $this->setEncodingEnabled(Mailcode_Commands_Keywords::TYPE_URLDECODE, $decode); |
41 | 41 | } |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * @return $this |
42 | 42 | * @throws Mailcode_Exception |
43 | 43 | */ |
44 | - public function setURLEncoding(bool $encoding=true) : self |
|
44 | + public function setURLEncoding(bool $encoding = true) : self |
|
45 | 45 | { |
46 | 46 | return $this->setEncodingEnabled(Mailcode_Commands_Keywords::TYPE_URLENCODE, $encoding); |
47 | 47 | } |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | ->getInfo() |
44 | 44 | ->getStringLiterals(); |
45 | 45 | |
46 | - foreach($literals as $literal) |
|
46 | + foreach ($literals as $literal) |
|
47 | 47 | { |
48 | 48 | $text = $literal->getText(); |
49 | 49 | |
50 | - if(strpos($text, '=') !== false && $this->analyzeQueryString($text)) |
|
50 | + if (strpos($text, '=') !== false && $this->analyzeQueryString($text)) |
|
51 | 51 | { |
52 | 52 | $this->queryParamTokens[] = $literal; |
53 | 53 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | |
89 | 89 | public function getQueryParam(string $name) : string |
90 | 90 | { |
91 | - if(isset($this->queryParams[$name])) |
|
91 | + if (isset($this->queryParams[$name])) |
|
92 | 92 | { |
93 | 93 | return $this->queryParams[$name]; |
94 | 94 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | public function removeQueryParam(string $name) : self |
111 | 111 | { |
112 | - if(isset($this->queryParams[$name])) |
|
112 | + if (isset($this->queryParams[$name])) |
|
113 | 113 | { |
114 | 114 | unset($this->queryParams[$name]); |
115 | 115 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function setEncodingEnabled(string $keyword, bool $enabled) : self |
54 | 54 | { |
55 | - if(!$this->supportsEncoding($keyword)) |
|
55 | + if (!$this->supportsEncoding($keyword)) |
|
56 | 56 | { |
57 | 57 | throw new Mailcode_Exception( |
58 | 58 | 'Cannot set encoding status, command does not support target encoding.', |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | { |
87 | 87 | $name = $keyword->getKeyword(); |
88 | 88 | |
89 | - if($this->supportsEncoding($name) && $this->isEncodingEnabled($name)) |
|
89 | + if ($this->supportsEncoding($name) && $this->isEncodingEnabled($name)) |
|
90 | 90 | { |
91 | 91 | $result[] = $name; |
92 | 92 | } |
@@ -99,22 +99,22 @@ discard block |
||
99 | 99 | { |
100 | 100 | $encodings = array(); |
101 | 101 | |
102 | - if($this instanceof IDNEncodeInterface) |
|
102 | + if ($this instanceof IDNEncodeInterface) |
|
103 | 103 | { |
104 | 104 | $encodings[] = Mailcode_Commands_Keywords::TYPE_IDN_ENCODE; |
105 | 105 | } |
106 | 106 | |
107 | - if($this instanceof IDNDecodeInterface) |
|
107 | + if ($this instanceof IDNDecodeInterface) |
|
108 | 108 | { |
109 | 109 | $encodings[] = Mailcode_Commands_Keywords::TYPE_IDN_DECODE; |
110 | 110 | } |
111 | 111 | |
112 | - if($this instanceof Mailcode_Interfaces_Commands_Validation_URLEncode) |
|
112 | + if ($this instanceof Mailcode_Interfaces_Commands_Validation_URLEncode) |
|
113 | 113 | { |
114 | 114 | $encodings[] = Mailcode_Commands_Keywords::TYPE_URLENCODE; |
115 | 115 | } |
116 | 116 | |
117 | - if($this instanceof Mailcode_Interfaces_Commands_Validation_URLDecode) |
|
117 | + if ($this instanceof Mailcode_Interfaces_Commands_Validation_URLDecode) |
|
118 | 118 | { |
119 | 119 | $encodings[] = Mailcode_Commands_Keywords::TYPE_URLDECODE; |
120 | 120 | } |
@@ -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 | } |