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 8bbef24 commit 5bb2e17Copy full SHA for 5bb2e17
src/NativeServiceProvider.php
@@ -84,6 +84,13 @@ public function packageRegistered()
84
}
85
86
87
+ public function bootingPackage()
88
+ {
89
+ if (config('nativephp-internal.running')) {
90
+ $this->rewriteDatabase();
91
+ }
92
93
+
94
protected function configureApp()
95
{
96
if (config('app.debug')) {
@@ -94,8 +101,6 @@ protected function configureApp()
101
102
$this->rewriteStoragePath();
103
97
- $this->rewriteDatabase();
98
-
99
104
$this->configureDisks();
100
105
106
config(['session.driver' => 'file']);
0 commit comments