Completed
Push — master ( f8b6bf...bec27e )
by Mahmoud
03:02
created
app/Port/Loader/Loaders/MigrationsLoaderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     {
42 42
         if (File::isDirectory($directory)) {
43 43
 
44
-            App::afterResolving('migrator', function ($migrator) use ($directory) {
44
+            App::afterResolving('migrator', function($migrator) use ($directory) {
45 45
                 foreach ((array)$directory as $path) {
46 46
                     $migrator->path($path);
47 47
                 }
Please login to merge, or discard this patch.
app/Port/Loader/Loaders/FactoriesLoaderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $newFactoriesPath = '/app/Port/Loader/Loaders/Factories';
24 24
 
25
-        App::singleton(Factory::class, function ($app) use ($newFactoriesPath) {
25
+        App::singleton(Factory::class, function($app) use ($newFactoriesPath) {
26 26
             $faker = $app->make(Generator::class);
27 27
 
28 28
             return Factory::construct($faker, base_path() . $newFactoriesPath);
Please login to merge, or discard this patch.
app/Port/Provider/MainServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,12 +73,12 @@
 block discarded – undo
73 73
      */
74 74
     public function register()
75 75
     {
76
-        $this->app->bind('LoaderHelper', function () {
76
+        $this->app->bind('LoaderHelper', function() {
77 77
             return $this->app->make(LoaderHelper::class);
78 78
         });
79 79
 
80 80
 
81
-        $this->app->bind('PortButler', function () {
81
+        $this->app->bind('PortButler', function() {
82 82
             return $this->app->make(PortButler::class);
83 83
         });
84 84
 
Please login to merge, or discard this patch.