Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Sep 26, 2023
1 parent 7d8e3ed commit 42d0630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Config/Factories.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static function __callStatic(string $component, array $arguments)
}

// Try to locate the class
$class = self::locateClass($options, $alias)
$class = self::locateClass($options, $alias);
if ($class !== null) {
return new $class(...$arguments);
}
Expand Down

0 comments on commit 42d0630

Please sign in to comment.