Skip to content

Commit a05f603

Browse files
committed
refactor: run cs fix
1 parent 910edf5 commit a05f603

File tree

9 files changed

+11
-1
lines changed

9 files changed

+11
-1
lines changed

system/CodeIgniter.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ public function run(?RouteCollectionInterface $routes = null, bool $returnRespon
379379
}
380380

381381
$this->sendResponse();
382+
382383
return null;
383384
}
384385

@@ -890,6 +891,7 @@ protected function startController()
890891
) {
891892
throw PageNotFoundException::forControllerNotFound($this->controller, $this->method);
892893
}
894+
893895
return null;
894896
}
895897

system/Commands/Database/MigrateRollback.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ public function run(array $params)
115115
$this->showError($e);
116116
// @codeCoverageIgnoreEnd
117117
}
118+
118119
return null;
119120
}
120121
}

system/Database/BaseBuilder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3043,6 +3043,7 @@ protected function trackAliases($table)
30433043
// Store the alias, if it doesn't already exist
30443044
$this->db->addTableAlias($table);
30453045
}
3046+
30463047
return null;
30473048
}
30483049

system/Filters/CSRF.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public function before(RequestInterface $request, $arguments = null)
5757

5858
throw $e;
5959
}
60+
6061
return null;
6162
}
6263

system/Filters/ForceHTTPS.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public function before(RequestInterface $request, $arguments = null)
4949
} catch (RedirectException $e) {
5050
return $e->getResponse();
5151
}
52+
5253
return null;
5354
}
5455

system/Filters/PageCache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public function before(RequestInterface $request, $arguments = null)
5151
if ($cachedResponse instanceof ResponseInterface) {
5252
return $cachedResponse;
5353
}
54+
5455
return null;
5556
}
5657

system/Images/Handlers/BaseHandler.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,7 @@ public function __call(string $name, array $args = [])
702702
if (method_exists($this->image(), $name)) {
703703
return $this->image()->{$name}(...$args);
704704
}
705+
705706
return null;
706707
}
707708

system/Language/Language.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ protected function formatMessage($message, array $args = [])
232232
* will return the file's contents, otherwise will merge with
233233
* the existing language lines.
234234
*
235-
* @return mixed[]|null
235+
* @return list<mixed>|null
236236
*/
237237
protected function load(string $file, string $locale, bool $return = false)
238238
{
@@ -265,6 +265,7 @@ protected function load(string $file, string $locale, bool $return = false)
265265

266266
// Merge our string
267267
$this->language[$locale][$file] = $lang;
268+
268269
return null;
269270
}
270271

system/Test/CIUnitTestCase.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ public function assertCloseEnoughString($expected, $actual, string $message = ''
482482
} catch (Exception) {
483483
return false;
484484
}
485+
485486
return null;
486487
}
487488

0 commit comments

Comments
 (0)