Skip to content

Commit

Permalink
fix: Notification facade docbloc (#428)
Browse files Browse the repository at this point in the history
Method returns `static` instead of `object`
  • Loading branch information
SRWieZ authored Nov 22, 2024
1 parent ff9283e commit 3133d14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Facades/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use Illuminate\Support\Facades\Facade;

/**
* @method static object title(string $title)
* @method static object event(string $event)
* @method static object message(string $body)
* @method static static title(string $title)
* @method static static event(string $event)
* @method static static message(string $body)
* @method static void show()
*/
class Notification extends Facade
Expand Down

0 comments on commit 3133d14

Please sign in to comment.