File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 33namespace LaravelDoctrine \Migrations ;
44
55use Illuminate \Support \ServiceProvider ;
6+ use Illuminate \Support \Str ;
67use LaravelDoctrine \Migrations \Configuration \ConfigurationProvider ;
78use LaravelDoctrine \Migrations \Console \DiffCommand ;
89use LaravelDoctrine \Migrations \Console \ExecuteCommand ;
@@ -65,7 +66,7 @@ protected function mergeConfig()
6566 if ($ this ->isLumen ()) {
6667 $ this ->app ->configure ('migrations ' );
6768 }
68-
69+
6970 $ this ->mergeConfigFrom (
7071 $ this ->getConfigPath (), 'migrations '
7172 );
@@ -94,6 +95,6 @@ public function provides()
9495 */
9596 protected function isLumen ()
9697 {
97- return str_contains ($ this ->app ->version (), 'Lumen ' );
98+ return Str:: contains ($ this ->app ->version (), 'Lumen ' );
9899 }
99100}
You can’t perform that action at this time.
0 commit comments