@@ -36,7 +36,7 @@ |
||
36 | 36 | public static function configureContainer(LimoncelloContainerInterface $container): void |
37 | 37 | { |
38 | 38 | $container[ThrowableHandlerInterface::class] = |
39 | - function (PsrContainerInterface $container): ThrowableHandlerInterface { |
|
39 | + function(PsrContainerInterface $container): ThrowableHandlerInterface { |
|
40 | 40 | return new WhoopsThrowableHandler(); |
41 | 41 | }; |
42 | 42 | } |
@@ -92,7 +92,7 @@ |
||
92 | 92 | |
93 | 93 | $routeConfigurators = []; |
94 | 94 | if (empty($method) === false && empty($path) === false) { |
95 | - list(, , , , , $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
95 | + list(,,,,, $routeConfigurators) = $this->initRouter($coreSettings)->match($method, $path); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | // configure container |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public static function configureContainer(LimoncelloContainerInterface $container): void |
40 | 40 | { |
41 | - $container[AnalyzerInterface::class] = function (PsrContainerInterface $container) { |
|
41 | + $container[AnalyzerInterface::class] = function(PsrContainerInterface $container) { |
|
42 | 42 | $settingsProvider = $container->get(SettingsProviderInterface::class); |
43 | 43 | $corsSettings = $settingsProvider->get(C::class); |
44 | 44 | $analyzer = Analyzer::instance(new Settings($corsSettings)); |
@@ -105,7 +105,7 @@ |
||
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
108 | - * @return array |
|
108 | + * @return string |
|
109 | 109 | */ |
110 | 110 | protected function getSettings(): array |
111 | 111 | { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ); |
89 | 89 | assert(file_exists($seedsListFile) === true, "Invalid Seeds file `$seedsListFile`."); |
90 | 90 | |
91 | - $modelsPath = $modelsFolder . DIRECTORY_SEPARATOR . $modelsFileMask; |
|
91 | + $modelsPath = $modelsFolder.DIRECTORY_SEPARATOR.$modelsFileMask; |
|
92 | 92 | |
93 | 93 | $seedInit = $defaults[static::KEY_SEED_INIT] ?? null; |
94 | 94 | assert( |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | |
130 | 130 | $registered = []; |
131 | 131 | $modelSchemes = new ModelSchemeInfo(); |
132 | - $registerModel = function ($modelClass) use ($modelSchemes, &$registered, $requireReverseRel) { |
|
132 | + $registerModel = function($modelClass) use ($modelSchemes, &$registered, $requireReverseRel) { |
|
133 | 133 | /** @var ModelInterface $modelClass */ |
134 | 134 | $modelSchemes->registerClass( |
135 | 135 | $modelClass, |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | foreach ($relationships[RelationshipTypes::BELONGS_TO] as $relName => list($rClass, $fKey, $rRel)) { |
146 | 146 | /** @var string $rClass */ |
147 | 147 | $modelSchemes->registerBelongsToOneRelationship($modelClass, $relName, $fKey, $rClass, $rRel); |
148 | - $registered[(string)$modelClass][$relName] = true; |
|
148 | + $registered[(string) $modelClass][$relName] = true; |
|
149 | 149 | $registered[$rClass][$rRel] = true; |
150 | 150 | |
151 | 151 | // Sanity check. Every `belongs_to` should be paired with `has_many` on the other side. |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | $rRelationships[RelationshipTypes::HAS_MANY][$rRel] === [$modelClass, $fKey, $relName]); |
157 | 157 | /** @var string $modelClass */ |
158 | 158 | |
159 | - assert($isRelationshipOk, "`belongsTo` relationship `$relName` of class $modelClass " . |
|
159 | + assert($isRelationshipOk, "`belongsTo` relationship `$relName` of class $modelClass ". |
|
160 | 160 | "should be paired with `hasMany` relationship."); |
161 | 161 | } |
162 | 162 | } |
@@ -170,14 +170,14 @@ discard block |
||
170 | 170 | (isset($rRelationships[RelationshipTypes::BELONGS_TO][$rRel]) === true && |
171 | 171 | $rRelationships[RelationshipTypes::BELONGS_TO][$rRel] === [$modelClass, $fKey, $relName]); |
172 | 172 | /** @var string $modelClass */ |
173 | - assert($isRelationshipOk, "`hasMany` relationship `$relName` of class $modelClass " . |
|
173 | + assert($isRelationshipOk, "`hasMany` relationship `$relName` of class $modelClass ". |
|
174 | 174 | "should be paired with `belongsTo` relationship."); |
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
178 | 178 | if (array_key_exists(RelationshipTypes::BELONGS_TO_MANY, $relationships) === true) { |
179 | 179 | foreach ($relationships[RelationshipTypes::BELONGS_TO_MANY] as $relName => $data) { |
180 | - if (isset($registered[(string)$modelClass][$relName]) === true) { |
|
180 | + if (isset($registered[(string) $modelClass][$relName]) === true) { |
|
181 | 181 | continue; |
182 | 182 | } |
183 | 183 | /** @var string $rClass */ |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | $rClass, |
192 | 192 | $rRel |
193 | 193 | ); |
194 | - $registered[(string)$modelClass][$relName] = true; |
|
194 | + $registered[(string) $modelClass][$relName] = true; |
|
195 | 195 | $registered[$rClass][$rRel] = true; |
196 | 196 | } |
197 | 197 | } |
@@ -150,7 +150,7 @@ |
||
150 | 150 | */ |
151 | 151 | public function setExpiresInSeconds(int $seconds): CookieInterface |
152 | 152 | { |
153 | - return $this->setExpiresAtUnixTime(time() + (int)max(0, $seconds)); |
|
153 | + return $this->setExpiresAtUnixTime(time() + (int) max(0, $seconds)); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -165,19 +165,19 @@ |
||
165 | 165 | public function __construct() |
166 | 166 | { |
167 | 167 | $this |
168 | - ->setRetrieveCallable(function (string $key) { |
|
168 | + ->setRetrieveCallable(function(string $key) { |
|
169 | 169 | return $_SESSION[$key]; |
170 | 170 | }) |
171 | - ->setPutCallable(function (string $key, $serializable): void { |
|
171 | + ->setPutCallable(function(string $key, $serializable): void { |
|
172 | 172 | $_SESSION[$key] = $serializable; |
173 | 173 | }) |
174 | - ->setHasCallable(function (string $key): bool { |
|
174 | + ->setHasCallable(function(string $key): bool { |
|
175 | 175 | return array_key_exists($key, $_SESSION); |
176 | 176 | }) |
177 | - ->setDeleteCallable(function (string $key): void { |
|
177 | + ->setDeleteCallable(function(string $key): void { |
|
178 | 178 | unset($_SESSION[$key]); |
179 | 179 | }) |
180 | - ->setIteratorCallable(function (): Iterator { |
|
180 | + ->setIteratorCallable(function(): Iterator { |
|
181 | 181 | return new ArrayIterator($_SESSION); |
182 | 182 | }) |
183 | 183 | ->setAbortCallable('\session_abort') |
@@ -57,7 +57,7 @@ |
||
57 | 57 | ); |
58 | 58 | assert(empty($logFile) === false, "Invalid Logs file name `$logFile`."); |
59 | 59 | |
60 | - $logPath = $logFolder . DIRECTORY_SEPARATOR . $logFile; |
|
60 | + $logPath = $logFolder.DIRECTORY_SEPARATOR.$logFile; |
|
61 | 61 | |
62 | 62 | return $defaults + [static::KEY_LOG_PATH => $logPath]; |
63 | 63 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public static function configureContainer(LimoncelloContainerInterface $container): void |
37 | 37 | { |
38 | 38 | $container[CookieJarInterface::class] = |
39 | - function (PsrContainerInterface $container): CookieJarInterface { |
|
39 | + function(PsrContainerInterface $container): CookieJarInterface { |
|
40 | 40 | $settings = $container->get(SettingsProviderInterface::class)->get(CookieSettings::class); |
41 | 41 | |
42 | 42 | return new CookieJar( |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public static function configureContainer(LimoncelloContainerInterface $container): void |
36 | 36 | { |
37 | - $container[SessionInterface::class] = function (PsrContainerInterface $container): SessionInterface { |
|
37 | + $container[SessionInterface::class] = function(PsrContainerInterface $container): SessionInterface { |
|
38 | 38 | /** @var SessionFunctionsInterface $functions */ |
39 | 39 | $functions = $container->get(SessionFunctionsInterface::class); |
40 | 40 | $session = new Session($functions); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | return $session; |
43 | 43 | }; |
44 | 44 | |
45 | - $container[SessionFunctionsInterface::class] = function (): SessionFunctionsInterface { |
|
45 | + $container[SessionFunctionsInterface::class] = function(): SessionFunctionsInterface { |
|
46 | 46 | $functions = new SessionFunctions(); |
47 | 47 | |
48 | 48 | return $functions; |