@@ -148,7 +148,7 @@ |
||
148 | 148 | } |
149 | 149 | |
150 | 150 | $prefix = isset($attributes['namespace']) |
151 | - ? $attributes['namespace'] . ':' |
|
151 | + ? $attributes['namespace'].':' |
|
152 | 152 | : $attributes['prefix']; |
153 | 153 | |
154 | 154 | return new Prefixer($prefix, $path); |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | } |
130 | 130 | |
131 | 131 | if ($position == self::POSITION_IN_TAG) { |
132 | - $buffer = '<' . $buffer; |
|
132 | + $buffer = '<'.$buffer; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | //Handling previous token |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | //Checking for invalid characters in tag name or arguments |
169 | 169 | if ($position == self::POSITION_IN_TAG) { |
170 | 170 | if (!preg_match('/[a-z0-9 \._\-="\':\/\r\n\t]/i', $char)) { |
171 | - $buffer = '<' . $buffer; |
|
171 | + $buffer = '<'.$buffer; |
|
172 | 172 | $position = self::POSITION_PLAIN_TEXT; |
173 | 173 | } |
174 | 174 | } |
@@ -202,18 +202,18 @@ discard block |
||
202 | 202 | continue; |
203 | 203 | } |
204 | 204 | |
205 | - $attributes[] = $attribute . '="' . $value . '"'; |
|
205 | + $attributes[] = $attribute.'="'.$value.'"'; |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | if (!empty($attributes)) { |
209 | - $result .= ' ' . join(' ', $attributes); |
|
209 | + $result .= ' '.join(' ', $attributes); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | if ($token[HtmlTokenizer::TOKEN_TYPE] == HtmlTokenizer::TAG_SHORT) { |
213 | 213 | $result .= '/'; |
214 | 214 | } |
215 | 215 | |
216 | - return '<' . $result . '>'; |
|
216 | + return '<'.$result.'>'; |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $token = [ |
228 | 228 | self::TOKEN_NAME => '', |
229 | 229 | self::TOKEN_TYPE => self::TAG_OPEN, |
230 | - self::TOKEN_CONTENT => '<' . ($content = $this->repairPHP($content)) . '>', |
|
230 | + self::TOKEN_CONTENT => '<'.($content = $this->repairPHP($content)).'>', |
|
231 | 231 | self::TOKEN_ATTRIBUTES => [] |
232 | 232 | ]; |
233 | 233 |
@@ -190,11 +190,11 @@ |
||
190 | 190 | protected function getPath(BucketInterface $bucket, $name) |
191 | 191 | { |
192 | 192 | if (empty($this->options['home'])) { |
193 | - return $this->files->normalizePath($bucket->getOption('directory') . $name); |
|
193 | + return $this->files->normalizePath($bucket->getOption('directory').$name); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | return $this->files->normalizePath( |
197 | - $this->options['home'] . '/' . $bucket->getOption('directory') . $name |
|
197 | + $this->options['home'].'/'.$bucket->getOption('directory').$name |
|
198 | 198 | ); |
199 | 199 | } |
200 | 200 | } |
201 | 201 | \ No newline at end of file |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | protected function getPath(BucketInterface $bucket, $name) |
219 | 219 | { |
220 | 220 | return $this->files->normalizePath( |
221 | - $this->options['home'] . '/' . $bucket->getOption('directory') . '/' . $name |
|
221 | + $this->options['home'].'/'.$bucket->getOption('directory').'/'.$name |
|
222 | 222 | ); |
223 | 223 | } |
224 | 224 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | */ |
233 | 233 | protected function getUri(BucketInterface $bucket, $name) |
234 | 234 | { |
235 | - return 'ssh2.sftp://' . $this->sftp . $this->getPath($bucket, $name); |
|
235 | + return 'ssh2.sftp://'.$this->sftp.$this->getPath($bucket, $name); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | /** |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | $directory = dirname($this->getPath($bucket, $name)); |
249 | 249 | |
250 | 250 | $mode = $bucket->getOption('mode', FilesInterface::RUNTIME); |
251 | - if (file_exists('ssh2.sftp://' . $this->sftp . $directory)) { |
|
251 | + if (file_exists('ssh2.sftp://'.$this->sftp.$directory)) { |
|
252 | 252 | if (function_exists('ssh2_sftp_chmod')) { |
253 | 253 | ssh2_sftp_chmod($this->sftp, $directory, $mode | 0111); |
254 | 254 | } |
@@ -264,9 +264,9 @@ discard block |
||
264 | 264 | continue; |
265 | 265 | } |
266 | 266 | |
267 | - $location .= '/' . $directory; |
|
267 | + $location .= '/'.$directory; |
|
268 | 268 | |
269 | - if (!file_exists('ssh2.sftp://' . $this->sftp . $location)) { |
|
269 | + if (!file_exists('ssh2.sftp://'.$this->sftp.$location)) { |
|
270 | 270 | if (!ssh2_sftp_mkdir($this->sftp, $location)) { |
271 | 271 | throw new ServerException( |
272 | 272 | "Unable to create directory {$location} using sftp connection." |
@@ -255,7 +255,7 @@ |
||
255 | 255 | protected function getPath(BucketInterface $bucket, $name) |
256 | 256 | { |
257 | 257 | return $this->files->normalizePath( |
258 | - $this->options['home'] . '/' . $bucket->getOption('directory') . $name |
|
258 | + $this->options['home'].'/'.$bucket->getOption('directory').$name |
|
259 | 259 | ); |
260 | 260 | } |
261 | 261 |
@@ -140,7 +140,7 @@ |
||
140 | 140 | */ |
141 | 141 | public function buildAddress($name) |
142 | 142 | { |
143 | - return $this->prefix . $name; |
|
143 | + return $this->prefix.$name; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -50,7 +50,7 @@ |
||
50 | 50 | && stripos($url, 'http://') === false && stripos($url, 'https://') === false |
51 | 51 | ) { |
52 | 52 | //Forcing scheme (not super great idea) |
53 | - $url = 'http://' . $url; |
|
53 | + $url = 'http://'.$url; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return (bool)filter_var($url, FILTER_VALIDATE_URL); |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | |
402 | 402 | $name = $this->tokens[$localID][self::TOKEN_CODE]; |
403 | 403 | if (!empty($namespace = $this->activeNamespace($tokenID))) { |
404 | - $name = $namespace . self::NS_SEPARATOR . $name; |
|
404 | + $name = $namespace.self::NS_SEPARATOR.$name; |
|
405 | 405 | } |
406 | 406 | |
407 | 407 | $this->functions[$name] = [ |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | |
427 | 427 | $name = $this->tokens[$localID][self::TOKEN_CODE]; |
428 | 428 | if (!empty($namespace = $this->activeNamespace($tokenID))) { |
429 | - $name = $namespace . self::NS_SEPARATOR . $name; |
|
429 | + $name = $namespace.self::NS_SEPARATOR.$name; |
|
430 | 430 | } |
431 | 431 | |
432 | 432 | $this->declarations[token_name($tokenType)][$name] = [ |
@@ -39,7 +39,7 @@ |
||
39 | 39 | |
40 | 40 | $name = $context->getName(); |
41 | 41 | if ($context instanceof \ReflectionMethod) { |
42 | - $name = $context->class . '::' . $name; |
|
42 | + $name = $context->class.'::'.$name; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | parent::__construct("Unable to resolve '{$parameter->name}' argument in '{$name}'."); |