Skip to content

Commit

Permalink
Merge pull request #792 from datlechin/php8.4-support
Browse files Browse the repository at this point in the history
Fix deprecated implictly nullable parameter
  • Loading branch information
bakerkretzmar authored Nov 28, 2024
2 parents 8e00229 + 8f5afd3 commit ca40646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BladeRouteGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BladeRouteGenerator
{
public static $generated;

public function generate($group = null, string $nonce = null): string
public function generate($group = null, ?string $nonce = null): string
{
$ziggy = new Ziggy($group);

Expand Down

0 comments on commit ca40646

Please sign in to comment.