Completed
Pull Request — master (#898)
by
unknown
38:18
created
src/N98/Magento/Command/Config/GetCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -154,6 +154,9 @@
 block discarded – undo
154 154
             ->renderByFormat($output, $formattedTable, $format);
155 155
     }
156 156
 
157
+    /**
158
+     * @param string $format
159
+     */
157 160
     private function renderTableValue($value, $format)
158 161
     {
159 162
         if ($value === null) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Customer/CreateDummyCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -132,6 +132,9 @@
 block discarded – undo
132 132
         }
133 133
     }
134 134
 
135
+    /**
136
+     * @param \Faker\Generator $faker
137
+     */
135 138
     private function createAddress($faker)
136 139
     {
137 140
         $country = $this->getCountryCollection()
Please login to merge, or discard this patch.
src/N98/Magento/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -898,7 +898,7 @@
 block discarded – undo
898 898
     }
899 899
 
900 900
     /**
901
-     * @param $state bool
901
+     * @param boolean $state bool
902 902
      */
903 903
     public function setScriptEnvironment($state)
904 904
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/RunCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         $application = $this->getApplication();
139 139
         $application->setAutoExit(false);
140 140
         $application->run(new StringInput('cache:flush'), new NullOutput());
141
-        if (!$application->isScriptEnvironment()){
141
+        if (!$application->isScriptEnvironment()) {
142 142
             $application->setAutoExit(true);
143 143
         }
144 144
 
Please login to merge, or discard this patch.