Completed
Push — master ( 60840d...857394 )
by Mahmoud
03:05
created
app/Port/Loader/Loaders/ConfigsLoaderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param $directory
41
+     * @param string $directory
42 42
      */
43 43
     private function loadConfigs($directory)
44 44
     {
Please login to merge, or discard this patch.
app/Port/Loader/Loaders/ViewsLoaderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @param $directory
45
+     * @param string $directory
46 46
      */
47 47
     private function loadViews($directory)
48 48
     {
Please login to merge, or discard this patch.
app/Port/Loader/Loaders/MigrationsLoaderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      */
58 58
     private function loadMigrations($directory)
59 59
     {
60
-        App::afterResolving('migrator', function ($migrator) use ($directory) {
60
+        App::afterResolving('migrator', function($migrator) use ($directory) {
61 61
             foreach ((array)$directory as $path) {
62 62
                 $migrator->path($path);
63 63
             }
Please login to merge, or discard this patch.