@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @param string|number|StringBuilder_Interface|NULL $content |
30 | 30 | * @return HTMLTag |
31 | 31 | */ |
32 | - public static function anchor(string $url, $content=null) : HTMLTag |
|
32 | + public static function anchor(string $url, $content = null) : HTMLTag |
|
33 | 33 | { |
34 | 34 | return HTMLTag::create('a') |
35 | 35 | ->href($url) |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @param string|number|StringBuilder_Interface|NULL $content |
47 | 47 | * @return HTMLTag |
48 | 48 | */ |
49 | - public static function div($content=null) : HTMLTag |
|
49 | + public static function div($content = null) : HTMLTag |
|
50 | 50 | { |
51 | 51 | return HTMLTag::create('div')->setContent($content); |
52 | 52 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param string|number|StringBuilder_Interface|NULL $content |
56 | 56 | * @return HTMLTag |
57 | 57 | */ |
58 | - public static function p($content=null) : HTMLTag |
|
58 | + public static function p($content = null) : HTMLTag |
|
59 | 59 | { |
60 | 60 | return HTMLTag::create('p')->setContent($content); |
61 | 61 | } |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | public function __construct() |
38 | 38 | { |
39 | - if(class_exists('\AppLocalize\Localization')) { |
|
39 | + if (class_exists('\AppLocalize\Localization')) { |
|
40 | 40 | \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged')); |
41 | 41 | } |
42 | 42 | } |
@@ -69,17 +69,17 @@ discard block |
||
69 | 69 | $keep = $this->resolveTokens($interval); |
70 | 70 | |
71 | 71 | $parts = array(); |
72 | - foreach($keep as $token) |
|
72 | + foreach ($keep as $token) |
|
73 | 73 | { |
74 | 74 | $value = $interval->getToken($token); |
75 | - if($value <= 0) { |
|
75 | + if ($value <= 0) { |
|
76 | 76 | continue; |
77 | 77 | } |
78 | 78 | |
79 | 79 | $parts[] = $this->translateToken($token, $interval); |
80 | 80 | } |
81 | 81 | |
82 | - if(count($parts) == 1) { |
|
82 | + if (count($parts) == 1) { |
|
83 | 83 | return $parts[0]; |
84 | 84 | } |
85 | 85 | |
@@ -101,10 +101,10 @@ discard block |
||
101 | 101 | $value = $interval->getToken($token); |
102 | 102 | |
103 | 103 | $suffix = 'p'; |
104 | - if($value == 1) { $suffix = 's'; } |
|
104 | + if ($value == 1) { $suffix = 's'; } |
|
105 | 105 | $token .= $suffix; |
106 | 106 | |
107 | - if(!isset(self::$texts[$token])) |
|
107 | + if (!isset(self::$texts[$token])) |
|
108 | 108 | { |
109 | 109 | throw new ConvertHelper_Exception( |
110 | 110 | 'Missing interval translation', |
@@ -134,9 +134,9 @@ discard block |
||
134 | 134 | { |
135 | 135 | $offset = 0; |
136 | 136 | |
137 | - foreach($this->tokens as $token) |
|
137 | + foreach ($this->tokens as $token) |
|
138 | 138 | { |
139 | - if($interval->getToken($token) > 0) |
|
139 | + if ($interval->getToken($token) > 0) |
|
140 | 140 | { |
141 | 141 | return array_slice($this->tokens, $offset); |
142 | 142 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | protected function initTexts() : void |
154 | 154 | { |
155 | - if(isset(self::$texts)) { |
|
155 | + if (isset(self::$texts)) { |
|
156 | 156 | return; |
157 | 157 | } |
158 | 158 |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | { |
112 | 112 | $name = $this->getName(); |
113 | 113 | |
114 | - if($this->info->hasNamespace()) { |
|
114 | + if ($this->info->hasNamespace()) { |
|
115 | 115 | $name = $this->info->getNamespace().'\\'.$this->name; |
116 | 116 | } |
117 | 117 | |
@@ -166,12 +166,12 @@ discard block |
||
166 | 166 | $parts[] = $this->type; |
167 | 167 | $parts[] = $this->getName(); |
168 | 168 | |
169 | - if(!empty($this->extends)) { |
|
169 | + if (!empty($this->extends)) { |
|
170 | 170 | $parts[] = 'extends'; |
171 | 171 | $parts[] = $this->extends; |
172 | 172 | } |
173 | 173 | |
174 | - if(!empty($this->implements)) { |
|
174 | + if (!empty($this->implements)) { |
|
175 | 175 | $parts[] = 'implements'; |
176 | 176 | $parts[] = implode(', ', $this->implements); |
177 | 177 | } |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | |
196 | 196 | protected function analyzeCode() : void |
197 | 197 | { |
198 | - if($this->keyword === 'abstract') { |
|
198 | + if ($this->keyword === 'abstract') { |
|
199 | 199 | $this->abstract = true; |
200 | - } else if($this->keyword === 'final') { |
|
200 | + } else if ($this->keyword === 'final') { |
|
201 | 201 | $this->final = true; |
202 | 202 | } |
203 | 203 | |
@@ -214,16 +214,16 @@ discard block |
||
214 | 214 | |
215 | 215 | $tokenName = 'none'; |
216 | 216 | |
217 | - foreach($parts as $part) |
|
217 | + foreach ($parts as $part) |
|
218 | 218 | { |
219 | 219 | $part = str_replace(',', '', $part); |
220 | 220 | $part = trim($part); |
221 | - if(empty($part)) { |
|
221 | + if (empty($part)) { |
|
222 | 222 | continue; |
223 | 223 | } |
224 | 224 | |
225 | 225 | $name = strtolower($part); |
226 | - if($name === 'extends' || $name === 'implements') { |
|
226 | + if ($name === 'extends' || $name === 'implements') { |
|
227 | 227 | $tokenName = $name; |
228 | 228 | continue; |
229 | 229 | } |
@@ -233,13 +233,13 @@ discard block |
||
233 | 233 | |
234 | 234 | $this->implements = $tokens['implements']; |
235 | 235 | |
236 | - if(!empty($this->implements)) { |
|
236 | + if (!empty($this->implements)) { |
|
237 | 237 | usort($this->implements, function(string $a, string $b) { |
238 | 238 | return strnatcasecmp($a, $b); |
239 | 239 | }); |
240 | 240 | } |
241 | 241 | |
242 | - if(!empty($tokens['extends'])) { |
|
242 | + if (!empty($tokens['extends'])) { |
|
243 | 243 | $this->extends = $tokens['extends'][0]; |
244 | 244 | } |
245 | 245 | } |
@@ -339,7 +339,7 @@ |
||
339 | 339 | */ |
340 | 340 | private function requireValidComponent(string $name) : void |
341 | 341 | { |
342 | - if(in_array($name, self::COLOR_COMPONENTS)) |
|
342 | + if (in_array($name, self::COLOR_COMPONENTS)) |
|
343 | 343 | { |
344 | 344 | return; |
345 | 345 | } |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | |
25 | 25 | $attributes = $this->compileAttributes(); |
26 | 26 | |
27 | - if(empty($attributes)) |
|
27 | + if (empty($attributes)) |
|
28 | 28 | { |
29 | 29 | return ''; |
30 | 30 | } |
31 | 31 | |
32 | - foreach($attributes as $name => $value) |
|
32 | + foreach ($attributes as $name => $value) |
|
33 | 33 | { |
34 | - if($value === '') |
|
34 | + if ($value === '') |
|
35 | 35 | { |
36 | 36 | continue; |
37 | 37 | } |
@@ -53,12 +53,12 @@ discard block |
||
53 | 53 | { |
54 | 54 | $attributes = $this->collection->getRawAttributes(); |
55 | 55 | |
56 | - if($this->collection->hasClasses()) |
|
56 | + if ($this->collection->hasClasses()) |
|
57 | 57 | { |
58 | 58 | $attributes['class'] = $this->collection->classesToString(); |
59 | 59 | } |
60 | 60 | |
61 | - if($this->collection->hasStyles()) |
|
61 | + if ($this->collection->hasStyles()) |
|
62 | 62 | { |
63 | 63 | $attributes['style'] = $this->collection->getStyles() |
64 | 64 | ->configureForInline() |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | private function renderAttribute(string $name, string $value) : string |
72 | 72 | { |
73 | - if($name === $value) |
|
73 | + if ($name === $value) |
|
74 | 74 | { |
75 | 75 | return $name; |
76 | 76 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | public function render() : string |
28 | 28 | { |
29 | - if($this->collection->hasStyles()) |
|
29 | + if ($this->collection->hasStyles()) |
|
30 | 30 | { |
31 | 31 | return implode( |
32 | 32 | $this->resolveSeparator(), |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | private function resolveSuffix() : string |
41 | 41 | { |
42 | - if($this->options->isTrailingSemicolonEnabled()) |
|
42 | + if ($this->options->isTrailingSemicolonEnabled()) |
|
43 | 43 | { |
44 | 44 | return ';'; |
45 | 45 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | private function resolveSeparator() : string |
51 | 51 | { |
52 | - if($this->options->isNewlineEnabled()) |
|
52 | + if ($this->options->isNewlineEnabled()) |
|
53 | 53 | { |
54 | 54 | return ';'.PHP_EOL; |
55 | 55 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | { |
62 | 62 | $indentLevel = $this->options->getIndentLevel(); |
63 | 63 | |
64 | - if($indentLevel > 0) |
|
64 | + if ($indentLevel > 0) |
|
65 | 65 | { |
66 | 66 | return str_repeat($this->options->getIndentChar(), $indentLevel); |
67 | 67 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | private function resolveValueSpace() : string |
73 | 73 | { |
74 | - if($this->options->isSpaceBeforeValueEnabled()) |
|
74 | + if ($this->options->isSpaceBeforeValueEnabled()) |
|
75 | 75 | { |
76 | 76 | return ' '; |
77 | 77 | } |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | $indent = $this->resolveIndent(); |
87 | 87 | $valueSpace = $this->resolveValueSpace(); |
88 | 88 | |
89 | - if($this->options->isSortingEnabled()) |
|
89 | + if ($this->options->isSortingEnabled()) |
|
90 | 90 | { |
91 | 91 | ksort($styles); |
92 | 92 | } |
93 | 93 | |
94 | - foreach($styles as $name => $value) |
|
94 | + foreach ($styles as $name => $value) |
|
95 | 95 | { |
96 | 96 | $lines[] = sprintf( |
97 | 97 | '%s%s:%s%s', |
@@ -31,12 +31,12 @@ discard block |
||
31 | 31 | ); |
32 | 32 | } |
33 | 33 | |
34 | - public function enableSorting(bool $enabled=true) : StyleOptions |
|
34 | + public function enableSorting(bool $enabled = true) : StyleOptions |
|
35 | 35 | { |
36 | 36 | return $this->setOption(self::OPTION_SORTING, $enabled); |
37 | 37 | } |
38 | 38 | |
39 | - public function enableSpaceBeforeValue(bool $enabled=true) : StyleOptions |
|
39 | + public function enableSpaceBeforeValue(bool $enabled = true) : StyleOptions |
|
40 | 40 | { |
41 | 41 | return $this->setOption(self::OPTION_SPACE_BEFORE_VALUE, $enabled); |
42 | 42 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param bool $enabled |
46 | 46 | * @return $this |
47 | 47 | */ |
48 | - public function enableNewline(bool $enabled=true) : StyleOptions |
|
48 | + public function enableNewline(bool $enabled = true) : StyleOptions |
|
49 | 49 | { |
50 | 50 | return $this->setOption(self::OPTION_NEWLINES, $enabled); |
51 | 51 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | return $this->getStringOption(self::OPTION_INDENT_CHAR); |
119 | 119 | } |
120 | 120 | |
121 | - public function enableTrailingSemicolon(bool $enabled=true) : StyleOptions |
|
121 | + public function enableTrailingSemicolon(bool $enabled = true) : StyleOptions |
|
122 | 122 | { |
123 | 123 | return $this->setOption(self::OPTION_TRAILING_SEMICOLON, $enabled); |
124 | 124 | } |
@@ -24,27 +24,27 @@ |
||
24 | 24 | * @param bool $important |
25 | 25 | * @return StyleBuilder |
26 | 26 | */ |
27 | - public function custom(string $value, bool $important=false) : StyleBuilder |
|
27 | + public function custom(string $value, bool $important = false) : StyleBuilder |
|
28 | 28 | { |
29 | 29 | return $this->setStyle($value, $important); |
30 | 30 | } |
31 | 31 | |
32 | - public function block(bool $important=false) : StyleBuilder |
|
32 | + public function block(bool $important = false) : StyleBuilder |
|
33 | 33 | { |
34 | 34 | return $this->setStyle('block', $important); |
35 | 35 | } |
36 | 36 | |
37 | - public function none(bool $important=false) : StyleBuilder |
|
37 | + public function none(bool $important = false) : StyleBuilder |
|
38 | 38 | { |
39 | 39 | return $this->setStyle('none', $important); |
40 | 40 | } |
41 | 41 | |
42 | - public function inline(bool $important=false) : StyleBuilder |
|
42 | + public function inline(bool $important = false) : StyleBuilder |
|
43 | 43 | { |
44 | 44 | return $this->setStyle('inline', $important); |
45 | 45 | } |
46 | 46 | |
47 | - public function inlineBlock(bool $important=false) : StyleBuilder |
|
47 | + public function inlineBlock(bool $important = false) : StyleBuilder |
|
48 | 48 | { |
49 | 49 | return $this->setStyle('inline-block', $important); |
50 | 50 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | return 'width'; |
15 | 15 | } |
16 | 16 | |
17 | - public function auto(bool $important=false) : StyleBuilder |
|
17 | + public function auto(bool $important = false) : StyleBuilder |
|
18 | 18 | { |
19 | 19 | return $this->setStyle('auto', $important); |
20 | 20 | } |