Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #95 from ariddlestone/ariddlestone-patch-1
Browse files Browse the repository at this point in the history
Added facade class docblock with static methods
  • Loading branch information
Nielsvanpach authored Oct 18, 2024
2 parents c3e4e7d + c3e3d14 commit c0017e3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Facades/ShortSchedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static \Spatie\ShortSchedule\ShortSchedule useLoop(\React\EventLoop\LoopInterface $loop)
* @method static \Spatie\ShortSchedule\PendingShortScheduleCommand command(string $command)
* @method static \Spatie\ShortSchedule\PendingShortScheduleCommand exec(string $command)
* @method static \Spatie\ShortSchedule\ShortSchedule registerCommandsFromConsoleKernel()
* @method static void run(?int $lifetime = null)
*/
class ShortSchedule extends Facade
{
/**
* @mixin \Spatie\ShortSchedule\ShortSchedule
*/
public static function getFacadeAccessor()
{
return \Spatie\ShortSchedule\ShortSchedule::class;
Expand Down

0 comments on commit c0017e3

Please sign in to comment.