Skip to content

Commit 003e82d

Browse files
Update Facade.php
1 parent d402b6b commit 003e82d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Facade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ public static function __callStatic(string $name, array $arguments): mixed
3939
{
4040
$instance = self::getInstance(static::getAlias());
4141

42-
if (!$instance) {
42+
if (!$instance)
4343
throw new \RuntimeException('A facade root has not been set.');
44-
}
4544

4645
return $instance->{$name}(...$arguments);
4746
}

0 commit comments

Comments
 (0)