Skip to content

Commit

Permalink
Allow null values
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 committed Jul 30, 2024
1 parent de4be97 commit 042fd58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Scout/Scout.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public function __construct(
) {}

public static function create(
string $path,
string $namespace = 'App\\',
?string $path = null,
?string $namespace = 'App\\',
?string $prefix = null,
): static {
return new static(
Expand Down

0 comments on commit 042fd58

Please sign in to comment.