Skip to content

Commit 6eae11a

Browse files
authored
Fixed warning for implicit nullable parameter.
1 parent 6b41994 commit 6eae11a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Policies/BasePolicy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ protected function validatePermissions(
116116
?Model $user,
117117
string $action,
118118
string $entity,
119-
Model $model = null
119+
?Model $model = null
120120
): bool {
121121
if (! $user) {
122122
$user = $this->createGuestUser();

0 commit comments

Comments
 (0)