Completed
Push — develop ( 9a96eb...ec6961 )
by Christian
02:45
created
src/N98/Magento/Command/Config/Env/ShowCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
             $output->writeln($flattenArray[$keyToShow]);
84 84
         } else {
85
-            $table =[];
85
+            $table = [];
86 86
 
87 87
             foreach ($flattenArray as $configKey => $configValue) {
88 88
                 $table[] = [
Please login to merge, or discard this patch.
src/N98/Magento/Command/Config/Env/EnvHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @param string $indent
14 14
      * @return string|null
15 15
      */
16
-    public static function exportVariable($var, $indent='')
16
+    public static function exportVariable($var, $indent = '')
17 17
     {
18 18
         switch (gettype($var)) {
19 19
             case 'string':
Please login to merge, or discard this patch.
tests/N98/Magento/Command/Developer/Console/TestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * @param string $reference
66
-     * @return PHPUnit_Framework_MockObject_MockObject|WriteInterface
66
+     * @return \PHPUnit\Framework\MockObject\MockObject
67 67
      */
68 68
     protected function mockWriterFileCWriteFileAssertion($reference)
69 69
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/Util/Xml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param \SimpleXMLElement $xml
29 29
      * @param string $path
30 30
      *
31
-     * @return \SimpleXMLElement|\SimpleXMLElement[]
31
+     * @return string
32 32
      *
33 33
      * @link https://github.com/astorm/pestle
34 34
      * @copyright Pulse Storm LLC, Alan Storm
Please login to merge, or discard this patch.
src/N98/Magento/Command/Customer/CreateCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -197,6 +197,9 @@
 block discarded – undo
197 197
         }
198 198
     }
199 199
 
200
+    /**
201
+     * @param InputInterface $input
202
+     */
200 203
     private function getAdditionalFields($input)
201 204
     {
202 205
         $additionalFields = $input->getArgument('additionalFields');
Please login to merge, or discard this patch.