File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php namespace SoapBox \Formatter ;
2+
3+ use Illuminate \Support \ServiceProvider ;
4+
5+ /**
6+ * Used to register Authroize with service providers, mainly for Laravel.
7+ */
8+ class FormatterServiceProvider extends ServiceProvider {
9+
10+ /**
11+ * Indicates if loading of the provider is deferred.
12+ *
13+ * @var bool
14+ */
15+ protected $ defer = false ;
16+
17+ /**
18+ * Bootstrap the application events.
19+ *
20+ * @return void
21+ */
22+ public function boot () {
23+ $ this ->package ('soapbox/laravel-formatter ' );
24+ }
25+
26+ /**
27+ * Register the service provider.
28+ *
29+ * @return void
30+ */
31+ public function register () {
32+ }
33+
34+ /**
35+ * Get the services provided by the provider.
36+ *
37+ * @return array
38+ */
39+ public function provides () {
40+ return array ();
41+ }
42+
43+ }
You can’t perform that action at this time.
0 commit comments