We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e389979 commit a84ab45Copy full SHA for a84ab45
composer.json
@@ -37,7 +37,10 @@
37
"laravel": {
38
"providers": [
39
"Ensi\\LaravelInitialEventPropagation\\LaravelInitialEventPropagationServiceProvider"
40
- ]
+ ],
41
+ "aliases": {
42
+ "InitialEventHolderFacade": "Ensi\\LaravelInitialEventPropagation\\InitialEventHolderFacade"
43
+ }
44
}
45
},
46
"scripts": {
src/InitialEventHolderFacade.php
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+namespace Ensi\LaravelInitialEventPropagation;
4
5
+use Ensi\InitialEventPropagation\InitialEventHolder;
6
+use Illuminate\Support\Facades\Facade;
7
8
+class InitialEventHolderFacade extends Facade
9
+{
10
+ protected static function getFacadeAccessor()
11
+ {
12
+ return InitialEventHolder::class;
13
14
+}
0 commit comments