Skip to content

Commit

Permalink
Add docblock to facade
Browse files Browse the repository at this point in the history
Helps with IDE support
  • Loading branch information
simonhamp authored Sep 8, 2024
1 parent 9afd7db commit 949a06e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Facades/Shell.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static void showInFolder(string $path)
* @method static string openFile(string $path)
* @method static void trashFile(string $path)
* @method static void openExternal(string $url)
*/
class Shell extends Facade
{
protected static function getFacadeAccessor()
Expand Down

0 comments on commit 949a06e

Please sign in to comment.