@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | if ($reflectionMethod->isPublic() === true && |
105 | 105 | $reflectionMethod->isStatic() === true && |
106 | 106 | $reflectionMethod->hasReturnType() === true && |
107 | - (string)$reflectionMethod->getReturnType() === 'bool' && |
|
107 | + (string) $reflectionMethod->getReturnType() === 'bool' && |
|
108 | 108 | $reflectionMethod->getNumberOfParameters() === 1 && |
109 | 109 | $reflectionMethod->getParameters()[0]->getClass()->implementsInterface(ContextInterface::class) === true |
110 | 110 | ) { |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | * |
121 | 121 | * @return string|null |
122 | 122 | */ |
123 | - private function getResourcesType(string $className): ?string |
|
123 | + private function getResourcesType(string $className): ? string |
|
124 | 124 | { |
125 | 125 | $resourceType = null; |
126 | 126 | if (array_key_exists(ResourceAuthorizationRulesInterface::class, class_implements($className)) === true) { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | } |
154 | 154 | |
155 | 155 | $policy = (new Policy($rules, RuleAlgorithm::firstApplicable())) |
156 | - ->setName($policiesName . ' -> ' . RequestProperties::REQ_RESOURCE_TYPE . "=`$resourcesType`") |
|
156 | + ->setName($policiesName.' -> '.RequestProperties::REQ_RESOURCE_TYPE."=`$resourcesType`") |
|
157 | 157 | ->setTarget($this->target(RequestProperties::REQ_RESOURCE_TYPE, $resourcesType)); |
158 | 158 | |
159 | 159 | return $policy; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | return [ |
101 | 101 | [ |
102 | 102 | static::OPTION_NAME => static::OPT_PATH, |
103 | - static::OPTION_DESCRIPTION => 'Path to a list of migrations or seeds. ' . |
|
103 | + static::OPTION_DESCRIPTION => 'Path to a list of migrations or seeds. '. |
|
104 | 104 | 'If not given a path from settings will be used.', |
105 | 105 | static::OPTION_SHORTCUT => 'i', |
106 | 106 | static::OPTION_MODE => static::OPTION_MODE__REQUIRED, |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $this->createSeedRunner($path, $seedInit)->run($container); |
149 | 149 | break; |
150 | 150 | default: |
151 | - $inOut->writeError("Unsupported action `$action`." . PHP_EOL); |
|
151 | + $inOut->writeError("Unsupported action `$action`.".PHP_EOL); |
|
152 | 152 | break; |
153 | 153 | } |
154 | 154 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $this->executeClear($container, $inOut); |
114 | 114 | break; |
115 | 115 | default: |
116 | - $inOut->writeError("Unsupported action `$action`." . PHP_EOL); |
|
116 | + $inOut->writeError("Unsupported action `$action`.".PHP_EOL); |
|
117 | 117 | break; |
118 | 118 | } |
119 | 119 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | throw new ConfigurationException(); |
139 | 139 | } |
140 | 140 | |
141 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
141 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
142 | 142 | |
143 | 143 | $this->getFileSystem($container)->delete($path); |
144 | 144 | } |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | $settingsData = $settingsProvider->serialize(); |
168 | 168 | $content = $this->composeContent($settingsData, $namespace, $class, $method); |
169 | 169 | |
170 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
170 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
171 | 171 | $this->getFileSystem($container)->write($path, $content); |
172 | 172 | } |
173 | 173 |
@@ -75,7 +75,7 @@ |
||
75 | 75 | /** |
76 | 76 | * @inheritdoc |
77 | 77 | */ |
78 | - public function getResourceType(): ?string |
|
78 | + public function getResourceType(): ? string |
|
79 | 79 | { |
80 | 80 | return $this->resourceType; |
81 | 81 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | public static function configureContainer(LimoncelloContainerInterface $container): void |
39 | 39 | { |
40 | 40 | $container[CommandStorageInterface::class] = |
41 | - function (PsrContainerInterface $container): CommandStorageInterface { |
|
41 | + function(PsrContainerInterface $container): CommandStorageInterface { |
|
42 | 42 | $creator = new class |
43 | 43 | { |
44 | 44 | use ClassIsTrait; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $providerClasses = $settings[S::KEY_PROVIDER_CLASSES]; |
80 | 80 | $commandsFolder = $settings[S::KEY_COMMANDS_FOLDER]; |
81 | 81 | $commandsFileMask = $settings[S::KEY_COMMANDS_FILE_MASK] ?? '*.php'; |
82 | - $commandsPath = $commandsFolder . DIRECTORY_SEPARATOR . $commandsFileMask; |
|
82 | + $commandsPath = $commandsFolder.DIRECTORY_SEPARATOR.$commandsFileMask; |
|
83 | 83 | |
84 | 84 | $storage = $creator->createCommandStorage($commandsPath, $providerClasses); |
85 | 85 |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | $routeConfigurators = []; |
99 | 99 | if (empty($method) === false && empty($path) === false) { |
100 | - list(, , , , , $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
100 | + list(,,,,, $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | // configure container |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | */ |
211 | 211 | protected function createThrowableHandler(SapiInterface $sapi, PsrContainerInterface $container): Closure |
212 | 212 | { |
213 | - return function (Throwable $throwable) use ($sapi, $container) { |
|
213 | + return function(Throwable $throwable) use ($sapi, $container) { |
|
214 | 214 | $handler = $this->createExceptionHandler($container); |
215 | 215 | $handler->handleThrowable($throwable, $sapi, $container); |
216 | 216 | }; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | */ |
225 | 225 | protected function createErrorHandler(SapiInterface $sapi, PsrContainerInterface $container): Closure |
226 | 226 | { |
227 | - return function ($severity, $message, $fileName, $lineNumber) use ($sapi, $container) { |
|
227 | + return function($severity, $message, $fileName, $lineNumber) use ($sapi, $container) { |
|
228 | 228 | $errorException = new ErrorException($message, 0, $severity, $fileName, $lineNumber); |
229 | 229 | $handler = $this->createThrowableHandler($sapi, $container); |
230 | 230 | $handler($errorException); |
@@ -239,9 +239,9 @@ discard block |
||
239 | 239 | */ |
240 | 240 | protected function createFatalErrorHandler(PsrContainerInterface $container): Closure |
241 | 241 | { |
242 | - return function () use ($container) { |
|
242 | + return function() use ($container) { |
|
243 | 243 | $error = $this->getLastError(); |
244 | - if ($error !== null && ((int)$error['type'] & (E_ERROR | E_COMPILE_ERROR))) { |
|
244 | + if ($error !== null && ((int) $error['type'] & (E_ERROR | E_COMPILE_ERROR))) { |
|
245 | 245 | $handler = $this->createExceptionHandler($container); |
246 | 246 | $handler->handleFatal($error, $container); |
247 | 247 | } |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | * |
254 | 254 | * @return array|null |
255 | 255 | */ |
256 | - protected function getLastError(): ?array |
|
256 | + protected function getLastError(): ? array |
|
257 | 257 | { |
258 | 258 | return error_get_last(); |
259 | 259 | } |