We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 492b183 commit c90979cCopy full SHA for c90979c
src/larke/admin/Facade/Event.php
@@ -16,6 +16,6 @@ class Event extends Facade
16
{
17
protected static function getFacadeAccessor()
18
19
- return 'larke-admin.event';
+ return 'larke-admin.events';
20
}
21
src/larke/admin/ServiceProvider.php
@@ -217,7 +217,7 @@ protected function registerBind()
217
$this->app->bind('larke-admin.loader', Loader::class);
218
219
// 事件
220
- $this->app->singleton('larke-admin.event', function() {
+ $this->app->singleton('larke-admin.events', function() {
221
$pool = new Events\Pool();
222
return new Events\Events($pool);
223
});
0 commit comments