From 949a06e73c0e9f7cb49dee78ae6f544f6b2bd380 Mon Sep 17 00:00:00 2001 From: Simon Hamp Date: Sun, 8 Sep 2024 15:34:30 +0100 Subject: [PATCH] Add docblock to facade Helps with IDE support --- src/Facades/Shell.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Facades/Shell.php b/src/Facades/Shell.php index aa5f7c1..27c8b03 100644 --- a/src/Facades/Shell.php +++ b/src/Facades/Shell.php @@ -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()