Skip to content

Commit ca42d51

Browse files
committed
CS fixes
1 parent d7bcb75 commit ca42d51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Router/Router.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public function __construct(RouteCollectionInterface $routes, ?Request $request
165165
*/
166166
private function getAutoRouter(): AutoRouterInterface
167167
{
168-
if (!$this->autoRouter instanceof AutoRouterInterface) {
168+
if (! $this->autoRouter instanceof AutoRouterInterface) {
169169
$autoRoutesImproved = config(Feature::class)->autoRoutesImproved ?? false;
170170
if ($autoRoutesImproved) {
171171
assert($this->collection instanceof RouteCollection);

0 commit comments

Comments
 (0)