Completed
Push — master ( 1f19ca...d173f6 )
by CodexShaper
04:58
created
src/Commands/InstallDatabaseManager.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $seedersPath = __DIR__ . '/../../database/seeds/';
29
+    protected $seedersPath = __DIR__.'/../../database/seeds/';
30 30
 
31 31
     /**
32 32
      * Get Option
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
      */
48 48
     protected function findComposer()
49 49
     {
50
-        if (file_exists(getcwd() . '/composer.phar')) {
51
-            return '"' . PHP_BINARY . '" ' . getcwd() . '/composer.phar';
50
+        if (file_exists(getcwd().'/composer.phar')) {
51
+            return '"'.PHP_BINARY.'" '.getcwd().'/composer.phar';
52 52
         }
53 53
         return 'composer';
54 54
     }
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
         $this->info('Dumping the autoloaded files and reloading all new files');
76 76
         $composer = $this->findComposer();
77
-        $process  = new Process($composer . ' dump-autoload');
77
+        $process  = new Process($composer.' dump-autoload');
78 78
         $process->setTimeout(null); // Setting timeout to null to prevent installation from stopping at a certain point in time
79 79
         $process->setWorkingDirectory(base_path())->run();
80 80
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $this->info('Seeding...');
99 99
         // Seeding Dummy Data
100 100
         $class = 'DatabaseManagerSeeder';
101
-        $file  = $this->seedersPath . $class . '.php';
101
+        $file  = $this->seedersPath.$class.'.php';
102 102
         if (file_exists($file) && !class_exists($class)) {
103 103
             require_once $file;
104 104
         }
Please login to merge, or discard this patch.