@@ -112,7 +112,7 @@ |
||
| 112 | 112 | $moduleCreateCommand->setTargetModuleDir($config['module_listener_options']['module_paths'][0]); |
| 113 | 113 | |
| 114 | 114 | // Enabled templating engines |
| 115 | - if(isset($config['framework']['templating']['engines'])) { |
|
| 115 | + if (isset($config['framework']['templating']['engines'])) { |
|
| 116 | 116 | $moduleCreateCommand->setEnabledTemplatingEngines($config['framework']['templating']['engines']); |
| 117 | 117 | } |
| 118 | 118 | |
@@ -124,7 +124,7 @@ |
||
| 124 | 124 | $output->write(sprintf('<info>%s</info> ', str_pad($id, $pad['id']))); |
| 125 | 125 | $output->write(sprintf('%s ', str_pad($line['type'], $pad['type']))); |
| 126 | 126 | if ('Alias' == $line['type']) { |
| 127 | - $output->write(sprintf('<comment>alias for</comment> <info>%s </info>', str_pad($line['class'], $pad['class']-10))); |
|
| 127 | + $output->write(sprintf('<comment>alias for</comment> <info>%s </info>', str_pad($line['class'], $pad['class'] - 10))); |
|
| 128 | 128 | } else { |
| 129 | 129 | $output->write(sprintf('%s ', str_pad($line['class'], $pad['class']))); |
| 130 | 130 | } |
@@ -367,7 +367,7 @@ |
||
| 367 | 367 | $formattedValue = sprintf("<em>object</em>(%s)", $this->abbrClass($item[1])); |
| 368 | 368 | } elseif ('array' === $item[0]) { |
| 369 | 369 | $formattedValue = sprintf("<em>array</em>(%s)", is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]); |
| 370 | - } elseif ('string' === $item[0]) { |
|
| 370 | + } elseif ('string' === $item[0]) { |
|
| 371 | 371 | $formattedValue = sprintf("'%s'", htmlspecialchars($item[1], ENT_QUOTES | ENT_SUBSTITUTE, $this->charset)); |
| 372 | 372 | } elseif ('null' === $item[0]) { |
| 373 | 373 | $formattedValue = '<em>null</em>'; |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function __toString() |
| 69 | 69 | { |
| 70 | - if (! $this->isReadable()) { |
|
| 70 | + if (!$this->isReadable()) { |
|
| 71 | 71 | return ''; |
| 72 | 72 | } |
| 73 | 73 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | public function close() |
| 81 | 81 | { |
| 82 | - if (! $this->resource) { |
|
| 82 | + if (!$this->resource) { |
|
| 83 | 83 | return; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -116,8 +116,8 @@ discard block |
||
| 116 | 116 | public function attach($resource, $mode = 'r') |
| 117 | 117 | { |
| 118 | 118 | $error = null; |
| 119 | - if (! is_resource($resource) && is_string($resource)) { |
|
| 120 | - set_error_handler(function ($e) use (&$error) { |
|
| 119 | + if (!is_resource($resource) && is_string($resource)) { |
|
| 120 | + set_error_handler(function($e) use (&$error) { |
|
| 121 | 121 | $error = $e; |
| 122 | 122 | }, E_WARNING); |
| 123 | 123 | $resource = fopen($resource, $mode); |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | throw new InvalidArgumentException('Invalid stream reference provided'); |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - if (! is_resource($resource)) { |
|
| 131 | + if (!is_resource($resource)) { |
|
| 132 | 132 | throw new InvalidArgumentException( |
| 133 | 133 | 'Invalid stream provided; must be a string stream identifier or resource' |
| 134 | 134 | ); |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | */ |
| 161 | 161 | public function tell() |
| 162 | 162 | { |
| 163 | - if (! $this->resource) { |
|
| 163 | + if (!$this->resource) { |
|
| 164 | 164 | return false; |
| 165 | 165 | } |
| 166 | 166 | |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | */ |
| 175 | 175 | public function eof() |
| 176 | 176 | { |
| 177 | - if (! $this->resource) { |
|
| 177 | + if (!$this->resource) { |
|
| 178 | 178 | return true; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | */ |
| 189 | 189 | public function isSeekable() |
| 190 | 190 | { |
| 191 | - if (! $this->resource) { |
|
| 191 | + if (!$this->resource) { |
|
| 192 | 192 | return false; |
| 193 | 193 | } |
| 194 | 194 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | */ |
| 215 | 215 | public function seek($offset, $whence = SEEK_SET) |
| 216 | 216 | { |
| 217 | - if (! $this->resource || ! $this->isSeekable()) { |
|
| 217 | + if (!$this->resource || !$this->isSeekable()) { |
|
| 218 | 218 | return false; |
| 219 | 219 | } |
| 220 | 220 | |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | public function rewind() |
| 232 | 232 | { |
| 233 | - if (! $this->isSeekable()) { |
|
| 233 | + if (!$this->isSeekable()) { |
|
| 234 | 234 | return false; |
| 235 | 235 | } |
| 236 | 236 | |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | */ |
| 247 | 247 | public function isWritable() |
| 248 | 248 | { |
| 249 | - if (! $this->resource) { |
|
| 249 | + if (!$this->resource) { |
|
| 250 | 250 | return false; |
| 251 | 251 | } |
| 252 | 252 | |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | */ |
| 266 | 266 | public function write($string) |
| 267 | 267 | { |
| 268 | - if (! $this->resource) { |
|
| 268 | + if (!$this->resource) { |
|
| 269 | 269 | return false; |
| 270 | 270 | } |
| 271 | 271 | |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | */ |
| 280 | 280 | public function isReadable() |
| 281 | 281 | { |
| 282 | - if (! $this->resource) { |
|
| 282 | + if (!$this->resource) { |
|
| 283 | 283 | return false; |
| 284 | 284 | } |
| 285 | 285 | |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | public function read($length) |
| 304 | 304 | { |
| 305 | - if (! $this->resource || ! $this->isReadable()) { |
|
| 305 | + if (!$this->resource || !$this->isReadable()) { |
|
| 306 | 306 | return false; |
| 307 | 307 | } |
| 308 | 308 | |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | */ |
| 321 | 321 | public function getContents() |
| 322 | 322 | { |
| 323 | - if (! $this->isReadable()) { |
|
| 323 | + if (!$this->isReadable()) { |
|
| 324 | 324 | return ''; |
| 325 | 325 | } |
| 326 | 326 | |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | $metadata = stream_get_meta_data($this->resource); |
| 344 | - if (! array_key_exists($key, $metadata)) { |
|
| 344 | + if (!array_key_exists($key, $metadata)) { |
|
| 345 | 345 | return; |
| 346 | 346 | } |
| 347 | 347 | |
@@ -109,18 +109,18 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function __construct($uri = '') |
| 111 | 111 | { |
| 112 | - if (! is_string($uri)) { |
|
| 112 | + if (!is_string($uri)) { |
|
| 113 | 113 | throw new InvalidArgumentException(sprintf( |
| 114 | 114 | 'URI passed to constructor must be a string; received "%s"', |
| 115 | 115 | (is_object($uri) ? get_class($uri) : gettype($uri)) |
| 116 | 116 | )); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - $this->urlEncode = function (array $matches) { |
|
| 119 | + $this->urlEncode = function(array $matches) { |
|
| 120 | 120 | return rawurlencode($matches[0]); |
| 121 | 121 | }; |
| 122 | 122 | |
| 123 | - if (! empty($uri)) { |
|
| 123 | + if (!empty($uri)) { |
|
| 124 | 124 | $this->parseUri($uri); |
| 125 | 125 | } |
| 126 | 126 | } |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | $authority = $this->host; |
| 213 | - if (! empty($this->userInfo)) { |
|
| 213 | + if (!empty($this->userInfo)) { |
|
| 214 | 214 | $authority = $this->userInfo . '@' . $authority; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | */ |
| 437 | 437 | public function withPort($port) |
| 438 | 438 | { |
| 439 | - if (! (is_integer($port) || (is_string($port) && is_numeric($port)))) { |
|
| 439 | + if (!(is_integer($port) || (is_string($port) && is_numeric($port)))) { |
|
| 440 | 440 | throw new InvalidArgumentException(sprintf( |
| 441 | 441 | 'Invalid port "%s" specified; must be an integer or integer string', |
| 442 | 442 | (is_object($port) ? get_class($port) : gettype($port)) |
@@ -482,7 +482,7 @@ discard block |
||
| 482 | 482 | */ |
| 483 | 483 | public function withPath($path) |
| 484 | 484 | { |
| 485 | - if (! is_string($path)) { |
|
| 485 | + if (!is_string($path)) { |
|
| 486 | 486 | throw new InvalidArgumentException( |
| 487 | 487 | 'Invalid path provided; must be a string' |
| 488 | 488 | ); |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | */ |
| 534 | 534 | public function withQuery($query) |
| 535 | 535 | { |
| 536 | - if (! is_string($query)) { |
|
| 536 | + if (!is_string($query)) { |
|
| 537 | 537 | throw new InvalidArgumentException( |
| 538 | 538 | 'Query string must be a string' |
| 539 | 539 | ); |
@@ -594,12 +594,12 @@ discard block |
||
| 594 | 594 | { |
| 595 | 595 | $parts = parse_url($uri); |
| 596 | 596 | |
| 597 | - $this->scheme = isset($parts['scheme']) ? $this->filterScheme($parts['scheme']) : ''; |
|
| 598 | - $this->userInfo = isset($parts['user']) ? $parts['user'] : ''; |
|
| 599 | - $this->host = isset($parts['host']) ? $parts['host'] : ''; |
|
| 600 | - $this->port = isset($parts['port']) ? $parts['port'] : null; |
|
| 601 | - $this->path = isset($parts['path']) ? $this->filterPath($parts['path']) : ''; |
|
| 602 | - $this->query = isset($parts['query']) ? $this->filterQuery($parts['query']) : ''; |
|
| 597 | + $this->scheme = isset($parts['scheme']) ? $this->filterScheme($parts['scheme']) : ''; |
|
| 598 | + $this->userInfo = isset($parts['user']) ? $parts['user'] : ''; |
|
| 599 | + $this->host = isset($parts['host']) ? $parts['host'] : ''; |
|
| 600 | + $this->port = isset($parts['port']) ? $parts['port'] : null; |
|
| 601 | + $this->path = isset($parts['path']) ? $this->filterPath($parts['path']) : ''; |
|
| 602 | + $this->query = isset($parts['query']) ? $this->filterQuery($parts['query']) : ''; |
|
| 603 | 603 | $this->fragment = isset($parts['fragment']) ? $this->filterFragment($parts['fragment']) : ''; |
| 604 | 604 | |
| 605 | 605 | if (isset($parts['pass'])) { |
@@ -622,11 +622,11 @@ discard block |
||
| 622 | 622 | { |
| 623 | 623 | $uri = ''; |
| 624 | 624 | |
| 625 | - if (! empty($scheme)) { |
|
| 625 | + if (!empty($scheme)) { |
|
| 626 | 626 | $uri .= sprintf('%s://', $scheme); |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - if (! empty($authority)) { |
|
| 629 | + if (!empty($authority)) { |
|
| 630 | 630 | $uri .= $authority; |
| 631 | 631 | } |
| 632 | 632 | |
@@ -656,15 +656,15 @@ discard block |
||
| 656 | 656 | */ |
| 657 | 657 | private function isNonStandardPort($scheme, $host, $port) |
| 658 | 658 | { |
| 659 | - if (! $scheme) { |
|
| 659 | + if (!$scheme) { |
|
| 660 | 660 | return true; |
| 661 | 661 | } |
| 662 | 662 | |
| 663 | - if (! $host || ! $port) { |
|
| 663 | + if (!$host || !$port) { |
|
| 664 | 664 | return false; |
| 665 | 665 | } |
| 666 | 666 | |
| 667 | - return ! isset($this->allowedSchemes[$scheme]) || $port !== $this->allowedSchemes[$scheme]; |
|
| 667 | + return !isset($this->allowedSchemes[$scheme]) || $port !== $this->allowedSchemes[$scheme]; |
|
| 668 | 668 | } |
| 669 | 669 | |
| 670 | 670 | /** |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | return ''; |
| 684 | 684 | } |
| 685 | 685 | |
| 686 | - if (! array_key_exists($scheme, $this->allowedSchemes)) { |
|
| 686 | + if (!array_key_exists($scheme, $this->allowedSchemes)) { |
|
| 687 | 687 | throw new InvalidArgumentException(sprintf( |
| 688 | 688 | 'Unsupported scheme "%s"; must be any empty string or in the set (%s)', |
| 689 | 689 | $scheme, |
@@ -728,7 +728,7 @@ discard block |
||
| 728 | 728 | */ |
| 729 | 729 | private function filterQuery($query) |
| 730 | 730 | { |
| 731 | - if (! empty($query) && strpos($query, '?') === 0) { |
|
| 731 | + if (!empty($query) && strpos($query, '?') === 0) { |
|
| 732 | 732 | $query = substr($query, 1); |
| 733 | 733 | } |
| 734 | 734 | |
@@ -779,7 +779,7 @@ discard block |
||
| 779 | 779 | $fragment = ''; |
| 780 | 780 | } |
| 781 | 781 | |
| 782 | - if (! empty($fragment) && strpos($fragment, '#') === 0) { |
|
| 782 | + if (!empty($fragment) && strpos($fragment, '#') === 0) { |
|
| 783 | 783 | $fragment = substr($fragment, 1); |
| 784 | 784 | } |
| 785 | 785 | |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | $parameters = parent::matchRequest($request); |
| 71 | 71 | $this->matchedRouteRequest = $request; |
| 72 | 72 | return $parameters; |
| 73 | - } catch(\Exception $e) { |
|
| 73 | + } catch (\Exception $e) { |
|
| 74 | 74 | throw $e; |
| 75 | 75 | } |
| 76 | 76 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | public function load($path) |
| 45 | 45 | { |
| 46 | 46 | |
| 47 | - if(!is_readable($path)) { |
|
| 47 | + if (!is_readable($path)) { |
|
| 48 | 48 | throw new \InvalidArgumentException('Invalid laravel routes path found: ' . $path); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | // The included file must return the laravel router |
| 55 | 55 | include $path; |
| 56 | 56 | |
| 57 | - if(!($router instanceof LaravelRouter)) { |
|
| 57 | + if (!($router instanceof LaravelRouter)) { |
|
| 58 | 58 | throw new \Exception('Invalid return value from ' |
| 59 | 59 | . pathinfo($path, PATHINFO_FILENAME) |
| 60 | 60 | . ' expected instance of LaravelRouter' |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) |
| 86 | 86 | { |
| 87 | 87 | $ret = $this->router->generate($name, $parameters); |
| 88 | - if($ret === false) { |
|
| 88 | + if ($ret === false) { |
|
| 89 | 89 | throw new RouteNotFoundException('Unable to generate route for: ' . $name); |
| 90 | 90 | } |
| 91 | 91 | return $ret; |
@@ -127,16 +127,16 @@ discard block |
||
| 127 | 127 | $routeParams = $matchedRoute->params; |
| 128 | 128 | |
| 129 | 129 | // The 'action' key always exists and defaults to the Route Name, so we check accordingly |
| 130 | - if(!isset($routeParams['controller']) && $routeParams['action'] === $matchedRoute->name) { |
|
| 130 | + if (!isset($routeParams['controller']) && $routeParams['action'] === $matchedRoute->name) { |
|
| 131 | 131 | throw new \Exception('Matched the route: ' . $matchedRoute->name . ' but unable to locate |
| 132 | 132 | any controller/action params to dispatch'); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | // We need _controller, to that symfony ControllerResolver can pick this up |
| 136 | - if(!isset($routeParams['_controller'])) { |
|
| 137 | - if(isset($routeParams['controller'])) { |
|
| 136 | + if (!isset($routeParams['_controller'])) { |
|
| 137 | + if (isset($routeParams['controller'])) { |
|
| 138 | 138 | $routeParams['_controller'] = $routeParams['controller']; |
| 139 | - } elseif(isset($routeParams['action'])) { |
|
| 139 | + } elseif (isset($routeParams['action'])) { |
|
| 140 | 140 | $routeParams['_controller'] = $routeParams['action']; |
| 141 | 141 | } else { |
| 142 | 142 | throw new \Exception('Unable to determine the controller from route: ' . $matchedRoute->name); |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | $routeParams['_route'] = $matchedRoute->name; |
| 147 | 147 | |
| 148 | 148 | // If the controller is an Object, and 'action' is defaulted to the route name - we default to __invoke |
| 149 | - if($routeParams['action'] === $matchedRoute->name) { |
|
| 149 | + if ($routeParams['action'] === $matchedRoute->name) { |
|
| 150 | 150 | $routeParams['action'] = '__invoke'; |
| 151 | 151 | } |
| 152 | 152 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | $loggerClass = $configs['parameters']['monolog.logger.class']; |
| 84 | - $serviceManager->setFactory('monolog.logger', function ($serviceManager) use ($loggerClass, $handlersToChannels) { |
|
| 84 | + $serviceManager->setFactory('monolog.logger', function($serviceManager) use ($loggerClass, $handlersToChannels) { |
|
| 85 | 85 | $logger = new $loggerClass('app'); |
| 86 | 86 | foreach ($handlersToChannels as $handler => $channels) { |
| 87 | 87 | $logger->pushHandler($serviceManager->get($handler)); |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | $class = $parameters[sprintf('monolog.handler.%s.class', $handler['type'])]; |
| 106 | 106 | $handler['level'] = is_int($handler['level']) ? $handler['level'] : constant('Monolog\Logger::' . strtoupper($handler['level'])); |
| 107 | 107 | |
| 108 | - $serviceManager->setFactory($handlerId, function ($serviceManager) use ($class, $handler) { |
|
| 108 | + $serviceManager->setFactory($handlerId, function($serviceManager) use ($class, $handler) { |
|
| 109 | 109 | switch ($handler['type']) { |
| 110 | 110 | case 'stream': |
| 111 | 111 | return new $class($handler['path'], $handler['level'], $handler['bubble']); |