File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Plugin \Providers ;
4+
5+ use Radiate \Foundation \Providers \AuthServiceProvider as ServiceProvider ;
6+
7+ class AuthServiceProvider extends ServiceProvider
8+ {
9+ /**
10+ * The policy mappings for the application.
11+ *
12+ * @var array
13+ */
14+ protected $ policies = [
15+ //
16+ ];
17+
18+ /**
19+ * Register any authentication / authorization services.
20+ *
21+ * @return void
22+ */
23+ public function boot ()
24+ {
25+ $ this ->registerPolicies ();
26+
27+ //
28+ }
29+ }
Original file line number Diff line number Diff line change 8585$ app ->register (Radiate \View \ViewServiceProvider::class);
8686$ app ->register (Radiate \WordPress \WordPressServiceProvider::class);
8787
88+ $ app ->register (Plugin \Providers \AuthServiceProvider::class);
8889$ app ->register (Plugin \Providers \EventServiceProvider::class);
8990$ app ->register (Plugin \Providers \PluginServiceProvider::class);
9091$ app ->register (Plugin \Providers \RouteServiceProvider::class);
You can’t perform that action at this time.
0 commit comments