@@ -81,9 +81,9 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | foreach ($this->namespaces[$namespace] as $directory) { |
| 83 | 83 | //Seeking for view filename |
| 84 | - if ($this->files->exists($directory . $filename)) { |
|
| 84 | + if ($this->files->exists($directory.$filename)) { |
|
| 85 | 85 | return [ |
| 86 | - self::VIEW_FILENAME => $directory . $filename, |
|
| 86 | + self::VIEW_FILENAME => $directory.$filename, |
|
| 87 | 87 | self::VIEW_NAMESPACE => $namespace, |
| 88 | 88 | self::VIEW_NAME => $this->fetchName($filename) |
| 89 | 89 | ]; |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | if (strpos($filename, '.') === false) { |
| 111 | 111 | //Forcing default extension |
| 112 | - $filename .= '.' . static::FILE_EXTENSION; |
|
| 112 | + $filename .= '.'.static::FILE_EXTENSION; |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | if (strpos($filename, ':') !== false) { |
@@ -424,7 +424,7 @@ |
||
| 424 | 424 | |
| 425 | 425 | if (!$injector instanceof InjectorInterface) { |
| 426 | 426 | throw new InjectionException( |
| 427 | - "Class '" . get_class($injector) . "' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
| 427 | + "Class '".get_class($injector)."' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
| 428 | 428 | ); |
| 429 | 429 | } |
| 430 | 430 | |
@@ -426,7 +426,7 @@ |
||
| 426 | 426 | ): AccessorInterface { |
| 427 | 427 | if (!is_string($accessor) || !class_exists($accessor)) { |
| 428 | 428 | throw new EntityException( |
| 429 | - "Unable to create accessor for field {$name} in " . static::class |
|
| 429 | + "Unable to create accessor for field {$name} in ".static::class |
|
| 430 | 430 | ); |
| 431 | 431 | } |
| 432 | 432 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | if (!$hideHeader && !empty($name)) { |
| 129 | 129 | //Showing element name (if any provided) |
| 130 | - $header = $indent . $this->style->apply($name, 'name'); |
|
| 130 | + $header = $indent.$this->style->apply($name, 'name'); |
|
| 131 | 131 | |
| 132 | 132 | //Showing equal sing |
| 133 | 133 | $header .= $this->style->apply(' = ', 'syntax', '='); |
@@ -137,24 +137,24 @@ discard block |
||
| 137 | 137 | |
| 138 | 138 | if ($level > $this->maxLevel) { |
| 139 | 139 | //Dumper is not reference based, we can't dump too deep values |
| 140 | - return $indent . $this->style->apply('-too deep-', 'maxLevel') . "\n"; |
|
| 140 | + return $indent.$this->style->apply('-too deep-', 'maxLevel')."\n"; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | $type = strtolower(gettype($value)); |
| 144 | 144 | |
| 145 | 145 | if ($type == 'array') { |
| 146 | - return $header . $this->dumpArray($value, $level, $hideHeader); |
|
| 146 | + return $header.$this->dumpArray($value, $level, $hideHeader); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | if ($type == 'object') { |
| 150 | - return $header . $this->dumpObject($value, $level, $hideHeader); |
|
| 150 | + return $header.$this->dumpObject($value, $level, $hideHeader); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | if ($type == 'resource') { |
| 154 | 154 | //No need to dump resource value |
| 155 | - $element = get_resource_type($value) . ' resource '; |
|
| 155 | + $element = get_resource_type($value).' resource '; |
|
| 156 | 156 | |
| 157 | - return $header . $this->style->apply($element, 'type', 'resource') . "\n"; |
|
| 157 | + return $header.$this->style->apply($element, 'type', 'resource')."\n"; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | //Value length |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | //Including value |
| 184 | - return $header . ' ' . $this->style->apply($element, 'value', $type) . "\n"; |
|
| 184 | + return $header.' '.$this->style->apply($element, 'value', $type)."\n"; |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -199,8 +199,8 @@ discard block |
||
| 199 | 199 | $count = count($array); |
| 200 | 200 | |
| 201 | 201 | //Array size and scope |
| 202 | - $output = $this->style->apply("array({$count})", 'type', 'array') . "\n"; |
|
| 203 | - $output .= $indent . $this->style->apply('[', 'syntax', '[') . "\n"; |
|
| 202 | + $output = $this->style->apply("array({$count})", 'type', 'array')."\n"; |
|
| 203 | + $output .= $indent.$this->style->apply('[', 'syntax', '[')."\n"; |
|
| 204 | 204 | } else { |
| 205 | 205 | $output = ''; |
| 206 | 206 | } |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | |
| 220 | 220 | if (!$hideHeader) { |
| 221 | 221 | //Closing array scope |
| 222 | - $output .= $indent . $this->style->apply(']', 'syntax', ']') . "\n"; |
|
| 222 | + $output .= $indent.$this->style->apply(']', 'syntax', ']')."\n"; |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | return $output; |
@@ -242,10 +242,10 @@ discard block |
||
| 242 | 242 | $indent = $this->style->indent($level); |
| 243 | 243 | |
| 244 | 244 | if (!$hideHeader) { |
| 245 | - $type = ($class ?: get_class($object)) . ' object '; |
|
| 245 | + $type = ($class ?: get_class($object)).' object '; |
|
| 246 | 246 | |
| 247 | - $header = $this->style->apply($type, 'type', 'object') . "\n"; |
|
| 248 | - $header .= $indent . $this->style->apply('(', 'syntax', '(') . "\n"; |
|
| 247 | + $header = $this->style->apply($type, 'type', 'object')."\n"; |
|
| 248 | + $header .= $indent.$this->style->apply('(', 'syntax', '(')."\n"; |
|
| 249 | 249 | } else { |
| 250 | 250 | $header = ''; |
| 251 | 251 | } |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | |
| 271 | 271 | return $header |
| 272 | 272 | . $this->dumpValue($debugInfo, '', $level + (is_scalar($object)), true) |
| 273 | - . $indent . $this->style->apply(')', 'syntax', ')') . "\n"; |
|
| 273 | + . $indent.$this->style->apply(')', 'syntax', ')')."\n"; |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | $refection = new \ReflectionObject($object); |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | } |
| 282 | 282 | |
| 283 | 283 | //Header, content, footer |
| 284 | - return $header . $output . $indent . $this->style->apply(')', 'syntax', ')') . "\n"; |
|
| 284 | + return $header.$output.$indent.$this->style->apply(')', 'syntax', ')')."\n"; |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | /** |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | $name = $this->style->apply($property->getName(), 'dynamic'); |
| 317 | 317 | } else { |
| 318 | 318 | //Property name includes access level |
| 319 | - $name = $property->getName() . $this->style->apply(':' . $access, 'access', $access); |
|
| 319 | + $name = $property->getName().$this->style->apply(':'.$access, 'access', $access); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | return $this->dumpValue($property->getValue($object), $name, $level + 1); |
@@ -334,7 +334,7 @@ discard block |
||
| 334 | 334 | $reflection = new \ReflectionFunction($closure); |
| 335 | 335 | |
| 336 | 336 | return [ |
| 337 | - 'name' => $reflection->getName() . " (lines {$reflection->getStartLine()}:{$reflection->getEndLine()})", |
|
| 337 | + 'name' => $reflection->getName()." (lines {$reflection->getStartLine()}:{$reflection->getEndLine()})", |
|
| 338 | 338 | 'file' => $reflection->getFileName(), |
| 339 | 339 | 'this' => $reflection->getClosureThis() |
| 340 | 340 | ]; |
@@ -84,11 +84,11 @@ |
||
| 84 | 84 | $reflection = new ReflectionFile( |
| 85 | 85 | $filename, |
| 86 | 86 | $this->normalizeTokens(token_get_all($this->files->read($filename))), |
| 87 | - (array)$this->memory->loadData(self::MEMORY . '.' . $fileMD5) |
|
| 87 | + (array)$this->memory->loadData(self::MEMORY.'.'.$fileMD5) |
|
| 88 | 88 | ); |
| 89 | 89 | |
| 90 | 90 | //Let's save to cache |
| 91 | - $this->memory->saveData(self::MEMORY . '.' . $fileMD5, $reflection->exportSchema()); |
|
| 91 | + $this->memory->saveData(self::MEMORY.'.'.$fileMD5, $reflection->exportSchema()); |
|
| 92 | 92 | |
| 93 | 93 | return $reflection; |
| 94 | 94 | } |
@@ -140,11 +140,11 @@ |
||
| 140 | 140 | * |
| 141 | 141 | * @return string |
| 142 | 142 | */ |
| 143 | - protected function createPlaceholder(string $name, string &$blockID = null): string |
|
| 143 | + protected function createPlaceholder(string $name, string & $blockID = null): string |
|
| 144 | 144 | { |
| 145 | - $blockID = $name . '-' . $this->supervisor->uniquePlaceholder(); |
|
| 145 | + $blockID = $name.'-'.$this->supervisor->uniquePlaceholder(); |
|
| 146 | 146 | |
| 147 | 147 | //Short block declaration syntax |
| 148 | - return '${' . $blockID . '}'; |
|
| 148 | + return '${'.$blockID.'}'; |
|
| 149 | 149 | } |
| 150 | 150 | } |
| 151 | 151 | \ No newline at end of file |
@@ -18,10 +18,10 @@ |
||
| 18 | 18 | /** |
| 19 | 19 | * Argument types. |
| 20 | 20 | */ |
| 21 | - const CONSTANT = 'constant'; //Scalar constant and not variable. |
|
| 22 | - const VARIABLE = 'variable'; //PHP variable |
|
| 21 | + const CONSTANT = 'constant'; //Scalar constant and not variable. |
|
| 22 | + const VARIABLE = 'variable'; //PHP variable |
|
| 23 | 23 | const EXPRESSION = 'expression'; //PHP code (expression). |
| 24 | - const STRING = 'string'; //Simple scalar string, can be fetched using stringValue(). |
|
| 24 | + const STRING = 'string'; //Simple scalar string, can be fetched using stringValue(). |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @var string |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | */ |
| 89 | 89 | protected function classReflection(string $class): \ReflectionClass |
| 90 | 90 | { |
| 91 | - $loader = function ($class) { |
|
| 91 | + $loader = function($class) { |
|
| 92 | 92 | throw new LocatorException("Class '{$class}' can not be loaded"); |
| 93 | 93 | }; |
| 94 | 94 | |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | { |
| 91 | 91 | if (defined('static::GUARD_NAMESPACE')) { |
| 92 | 92 | //Yay! Isolation |
| 93 | - $permission = constant(get_called_class() . '::' . 'GUARD_NAMESPACE') . '.' . $permission; |
|
| 93 | + $permission = constant(get_called_class().'::'.'GUARD_NAMESPACE').'.'.$permission; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | return $permission; |