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 3
3
namespace LaravelDoctrine \Migrations ;
4
4
5
5
use Illuminate \Support \ServiceProvider ;
6
+ use Illuminate \Support \Str ;
6
7
use LaravelDoctrine \Migrations \Configuration \ConfigurationProvider ;
7
8
use LaravelDoctrine \Migrations \Console \DiffCommand ;
8
9
use LaravelDoctrine \Migrations \Console \ExecuteCommand ;
@@ -65,7 +66,7 @@ protected function mergeConfig()
65
66
if ($ this ->isLumen ()) {
66
67
$ this ->app ->configure ('migrations ' );
67
68
}
68
-
69
+
69
70
$ this ->mergeConfigFrom (
70
71
$ this ->getConfigPath (), 'migrations '
71
72
);
@@ -94,6 +95,6 @@ public function provides()
94
95
*/
95
96
protected function isLumen ()
96
97
{
97
- return str_contains ($ this ->app ->version (), 'Lumen ' );
98
+ return Str:: contains ($ this ->app ->version (), 'Lumen ' );
98
99
}
99
100
}
You can’t perform that action at this time.
0 commit comments