Completed
Pull Request — epic/2.0.0 (#37)
by Steven
03:03
created
src/Magestead/Command/SetupCommand.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @param $source
52
-     * @param $target
51
+     * @param string $source
52
+     * @param string $target
53 53
      * @param OutputInterface $output
54 54
      */
55 55
     protected function copyConfigFiles($source, $target, OutputInterface $output)
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     /**
134 134
      * @param OutputInterface $output
135
-     * @param $options
135
+     * @param Options $options
136 136
      */
137 137
     protected function setupProject(OutputInterface $output, $options)
138 138
     {
Please login to merge, or discard this patch.
src/Magestead/Helper/Options.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -53,20 +53,20 @@
 block discarded – undo
53 53
     public function getAllOptions()
54 54
     {
55 55
         return [
56
-          'app' => $this->_app,
57
-          'server' => $this->_server,
58
-          'phpver' => $this->_phpVer,
59
-          'os' => $this->_os,
60
-          'box' => $this->_box,
61
-          'm2user' => $this->_m2Username,
62
-          'm2pass' => $this->_m2Password,
63
-          'repo_url' => $this->_repoUrl,
64
-          'ip_address' => $this->_ipAddress,
65
-          'cpus' => $this->_cpus,
66
-          'memory_limit' => $this->_memorylimit,
67
-          'locale' => $this->_locale,
68
-          'default_currency' => $this->_currency,
69
-          'base_url' => $this->_baseUrl,
56
+            'app' => $this->_app,
57
+            'server' => $this->_server,
58
+            'phpver' => $this->_phpVer,
59
+            'os' => $this->_os,
60
+            'box' => $this->_box,
61
+            'm2user' => $this->_m2Username,
62
+            'm2pass' => $this->_m2Password,
63
+            'repo_url' => $this->_repoUrl,
64
+            'ip_address' => $this->_ipAddress,
65
+            'cpus' => $this->_cpus,
66
+            'memory_limit' => $this->_memorylimit,
67
+            'locale' => $this->_locale,
68
+            'default_currency' => $this->_currency,
69
+            'base_url' => $this->_baseUrl,
70 70
         ];
71 71
     }
72 72
 
Please login to merge, or discard this patch.