Skip to content

Commit 7e209dd

Browse files
committed
CS fixes
1 parent fb390c5 commit 7e209dd

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
@@ -176,7 +176,7 @@ public function __construct(RouteCollectionInterface $routes, ?Request $request
176176
*/
177177
private function getAutoRouter(): AutoRouterInterface
178178
{
179-
if (!$this->autoRouter instanceof AutoRouterInterface) {
179+
if (! $this->autoRouter instanceof AutoRouterInterface) {
180180
$autoRoutesImproved = config(Feature::class)->autoRoutesImproved ?? false;
181181
if ($autoRoutesImproved) {
182182
assert($this->collection instanceof RouteCollection);

0 commit comments

Comments
 (0)