Skip to content

Commit 33bb067

Browse files
authored
Fix deprecated implicit nullable parameter (#74)
1 parent d626d6c commit 33bb067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function usesQueryBuilderMixin(): bool
208208
return $this->useQueryBuilderMixin;
209209
}
210210

211-
public function callOnExpiredFeatures(array $expiredFeatures, callable $handler = null): static
211+
public function callOnExpiredFeatures(array $expiredFeatures, ?callable $handler = null): static
212212
{
213213
$handler ??= static function ($feature): void {
214214
throw new FeatureExpired($feature);

0 commit comments

Comments
 (0)