File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -60,25 +60,25 @@ public function configurePackage(Package $package): void
6060
6161 public function packageRegistered (): void
6262 {
63- // Facade Registration
63+ // Facade Registration
6464 $ this ->app ->bind ('skeleton ' , function (): Skeleton {
6565 return new Skeleton ();
6666 });
6767
68- // Context Registration
68+ // Context Registration
6969 $ this ->app ->resolving ('skeleton ' , function () {
7070 foreach ($ this ->getContexts () as $ context ) {
7171 Filament::registerContext ($ context );
7272 }
7373 });
7474
75- // Asset Registration
75+ // Asset Registration
7676 $ this ->app ->resolving (AssetManager::class, function () {
7777 FilamentAsset::register ($ this ->getAssets (), $ this ->getAssetPackage ());
7878 FilamentAsset::registerScriptData ($ this ->getScriptData (), $ this ->getAssetPackage ());
7979 });
8080
81- // Icon Registration
81+ // Icon Registration
8282 $ this ->app ->resolving (IconManager::class, function () {
8383 FilamentIcon::register ($ this ->getIcons ());
8484 });
@@ -88,7 +88,7 @@ public function packageBooted(): void
8888 {
8989 $ this ->registerMacros ();
9090
91- // Handle Stubs
91+ // Handle Stubs
9292 if ($ this ->app ->runningInConsole ()) {
9393 foreach (app (Filesystem::class)->files (__DIR__ .'/../stubs/ ' ) as $ file ) {
9494 $ this ->publishes ([
@@ -97,7 +97,7 @@ public function packageBooted(): void
9797 }
9898 }
9999
100- // Testing
100+ // Testing
101101 TestableLivewire::mixin (new TestsSkeleton ());
102102 }
103103
You can’t perform that action at this time.
0 commit comments