Completed
Pull Request — master (#912)
by
unknown
07:49
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.
shared/tests/N98/Util/FilesystemTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -221,11 +221,11 @@
 block discarded – undo
221 221
     public static function convertedBytesProvider()
222 222
     {
223 223
         return array(
224
-            array(20000000,     2,  '19.07M'),
225
-            array(20000000,     3,  '19.073M'),
226
-            array(2000000000,   2,  '1.86G'),
227
-            array(2,            2,  '2.00B'),
228
-            array(2048,         2,  '2.00K'),
224
+            array(20000000, 2, '19.07M'),
225
+            array(20000000, 3, '19.073M'),
226
+            array(2000000000, 2, '1.86G'),
227
+            array(2, 2, '2.00B'),
228
+            array(2048, 2, '2.00K'),
229 229
         );
230 230
     }
231 231
 }
Please login to merge, or discard this patch.