@@ -45,7 +45,7 @@ |
||
45 | 45 | ViewSource $view, |
46 | 46 | string $code |
47 | 47 | ): string { |
48 | - return preg_replace_callback($this->pattern, function ($matches) use ($environment) { |
|
48 | + return preg_replace_callback($this->pattern, function($matches) use ($environment) { |
|
49 | 49 | return $environment->getValue($matches[1]); |
50 | 50 | }, $code); |
51 | 51 | } |
@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | |
104 | 104 | foreach ($this->namespaces[$namespace] as $directory) { |
105 | 105 | //Seeking for view filename |
106 | - if ($this->files->exists($directory . $filename)) { |
|
106 | + if ($this->files->exists($directory.$filename)) { |
|
107 | 107 | |
108 | 108 | //Found view context |
109 | 109 | $this->sourceCache[$path] = new ViewSource( |
110 | - $directory . $filename, |
|
110 | + $directory.$filename, |
|
111 | 111 | $this->fetchName($filename), |
112 | 112 | $namespace |
113 | 113 | ); |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | |
156 | 156 | if (strpos($filename, '.') === false && !empty($this->extension)) { |
157 | 157 | //Forcing default extension |
158 | - $filename .= '.' . $this->extension; |
|
158 | + $filename .= '.'.$this->extension; |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | if (strpos($filename, ViewsInterface::NS_SEPARATOR) !== false) { |
@@ -115,7 +115,7 @@ |
||
115 | 115 | */ |
116 | 116 | public function localeDirectory(string $locale): string |
117 | 117 | { |
118 | - return $this->config['localesDirectory'] . $locale . '/'; |
|
118 | + return $this->config['localesDirectory'].$locale.'/'; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | //Unique env file hash |
133 | 133 | $this->id = $this->files->md5($this->filename); |
134 | 134 | |
135 | - if (!empty($values = $this->memory->loadData(static::MEMORY . '.' . $this->id))) { |
|
135 | + if (!empty($values = $this->memory->loadData(static::MEMORY.'.'.$this->id))) { |
|
136 | 136 | //Restore from cache |
137 | 137 | $this->initEnvironment($values); |
138 | 138 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $this->parseValues($this->filename) |
145 | 145 | ); |
146 | 146 | |
147 | - $this->memory->saveData(static::MEMORY . '.' . $this->id, $values); |
|
147 | + $this->memory->saveData(static::MEMORY.'.'.$this->id, $values); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -113,7 +113,7 @@ |
||
113 | 113 | */ |
114 | 114 | protected function configFilename(string $config): string |
115 | 115 | { |
116 | - return $this->directory . $config . static::EXTENSION; |
|
116 | + return $this->directory.$config.static::EXTENSION; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | public static function shorter(string $string, int $limit = 300): string |
78 | 78 | { |
79 | 79 | if (mb_strlen($string) + 3 > $limit) { |
80 | - return trim(mb_substr($string, 0, $limit - 3, 'UTF-8')) . '...'; |
|
80 | + return trim(mb_substr($string, 0, $limit - 3, 'UTF-8')).'...'; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | return $string; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $bytes /= 1024; |
99 | 99 | } |
100 | 100 | |
101 | - return number_format($bytes, $unit ? $decimals : 0) . " " . $pows[$unit]; |
|
101 | + return number_format($bytes, $unit ? $decimals : 0)." ".$pows[$unit]; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | strlen(str_replace("\t", $tabulationCost, $indent)) - $minIndent |
188 | 188 | ); |
189 | 189 | |
190 | - $line = $useIndent . substr($line, strlen($indent)); |
|
190 | + $line = $useIndent.substr($line, strlen($indent)); |
|
191 | 191 | unset($line); |
192 | 192 | } |
193 | 193 |
@@ -253,20 +253,20 @@ |
||
253 | 253 | public function createHeader(): string |
254 | 254 | { |
255 | 255 | $header = [ |
256 | - rawurlencode($this->name) . '=' . rawurlencode($this->value) |
|
256 | + rawurlencode($this->name).'='.rawurlencode($this->value) |
|
257 | 257 | ]; |
258 | 258 | |
259 | 259 | if ($this->lifetime !== null) { |
260 | - $header[] = 'Expires=' . gmdate(\DateTime::COOKIE, $this->getExpires()); |
|
261 | - $header[] = 'Max-Age=' . $this->lifetime; |
|
260 | + $header[] = 'Expires='.gmdate(\DateTime::COOKIE, $this->getExpires()); |
|
261 | + $header[] = 'Max-Age='.$this->lifetime; |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | if (!empty($this->path)) { |
265 | - $header[] = 'Path=' . $this->path; |
|
265 | + $header[] = 'Path='.$this->path; |
|
266 | 266 | } |
267 | 267 | |
268 | 268 | if (!empty($this->domain)) { |
269 | - $header[] = 'Domain=' . $this->domain; |
|
269 | + $header[] = 'Domain='.$this->domain; |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | if ($this->secure) { |
@@ -162,11 +162,11 @@ discard block |
||
162 | 162 | } |
163 | 163 | |
164 | 164 | while (ob_get_level() > $outputLevel + 1) { |
165 | - $output = ob_get_clean() . $output; |
|
165 | + $output = ob_get_clean().$output; |
|
166 | 166 | } |
167 | 167 | } |
168 | 168 | |
169 | - return $this->wrapResponse($response, $result, ob_get_clean() . $output); |
|
169 | + return $this->wrapResponse($response, $result, ob_get_clean().$output); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | Request $outerRequest, |
215 | 215 | Response $outerResponse |
216 | 216 | ): \Closure { |
217 | - $next = function ($request = null, $response = null) use ( |
|
217 | + $next = function($request = null, $response = null) use ( |
|
218 | 218 | $position, |
219 | 219 | $outerRequest, |
220 | 220 | $outerResponse |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function fetch(array $keys, bool $fill = false, $filler = null) |
116 | 116 | { |
117 | - $result = array_intersect_key($this->all(), array_flip($keys));; |
|
117 | + $result = array_intersect_key($this->all(), array_flip($keys)); ; |
|
118 | 118 | if (!$fill) { |
119 | 119 | return $result; |
120 | 120 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | $data = $this->data; |
181 | 181 | |
182 | 182 | //Generating path relative to a given name and prefix |
183 | - $path = (!empty($this->prefix) ? $this->prefix . '.' : '') . $name; |
|
183 | + $path = (!empty($this->prefix) ? $this->prefix.'.' : '').$name; |
|
184 | 184 | if (empty($path)) { |
185 | 185 | return $data; |
186 | 186 | } |