From 683fd87df29f4ebc3b6d7a761bf2e61c3b50eedf Mon Sep 17 00:00:00 2001 From: nshiro <14008307+nshiro@users.noreply.github.com> Date: Mon, 21 Mar 2022 14:13:29 +0000 Subject: [PATCH 1/2] Add an example to the class aliases --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 7c60cd9defe..2cee48d6074 100644 --- a/config/app.php +++ b/config/app.php @@ -191,7 +191,7 @@ */ 'aliases' => Facade::defaultAliases()->merge([ - // ... + // 'YourClass' => App\SomePath\YourClass::class, ])->toArray(), ]; From bbd2346fa2e1ca641de9c207cac99e282fcdbf4e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 21 Mar 2022 09:00:39 -0700 Subject: [PATCH 2/2] Update app.php --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 2cee48d6074..b02c7f4b723 100644 --- a/config/app.php +++ b/config/app.php @@ -191,7 +191,7 @@ */ 'aliases' => Facade::defaultAliases()->merge([ - // 'YourClass' => App\SomePath\YourClass::class, + // 'ExampleClass' => App\Example\ExampleClass::class, ])->toArray(), ];