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 b57d53b commit 97e4750Copy full SHA for 97e4750
src/DatabaseRepositoryServiceProvider.php
@@ -27,7 +27,17 @@ class DatabaseRepositoryServiceProvider extends ServiceProvider
27
/**
28
* Bootstrap the application events.
29
*/
30
- public function boot()
+// public function boot()
31
+// {
32
+//
33
34
+// $this->register();
35
+// }
36
+
37
+ /**
38
+ * Register the service provider.
39
+ */
40
+ public function register(): void
41
{
42
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
43
$this->publishes([
@@ -37,14 +47,6 @@ public function boot()
47
$this->app->configure('repository');
48
}
49
- $this->register();
- }
-
- /**
44
- * Register the service provider.
45
- */
46
- public function register(): void
- {
50
$this->registerCommand();
51
52
0 commit comments