Completed
Pull Request — develop (#169)
by Robbie
18:02 queued 06:04
created
Magento/Command/Developer/Module/Create/SubCommand/CreateModuleDiFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             )
29 29
         );
30 30
 
31
-        $this->output->writeln('<info>Created file: <comment>' .  $outFile .'<comment></info>');
31
+        $this->output->writeln('<info>Created file: <comment>' . $outFile . '<comment></info>');
32 32
 
33 33
         return true;
34 34
     }
Please login to merge, or discard this patch.
Command/Developer/Module/Create/SubCommand/CreateModuleEventsFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             )
29 29
         );
30 30
 
31
-        $this->output->writeln('<info>Created file: <comment>' .  $outFile .'<comment></info>');
31
+        $this->output->writeln('<info>Created file: <comment>' . $outFile . '<comment></info>');
32 32
 
33 33
         return true;
34 34
     }
Please login to merge, or discard this patch.
src/N98/Magento/Command/GiftCard/CreateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
                 'status'        => 1,
50 50
                 'is_redeemable' => 1,
51 51
                 'website_id'    => $input->getOption('website')
52
-                    ? : $this->getObjectManager()->get('Magento\Store\Model\StoreManager')->getWebsite(true)->getId(),
52
+                    ?: $this->getObjectManager()->get('Magento\Store\Model\StoreManager')->getWebsite(true)->getId(),
53 53
                 'balance'       => $input->getArgument('amount'),
54 54
                 'date_expires'  => $input->getOption('expires')
55 55
             )
Please login to merge, or discard this patch.
src/N98/Magento/Command/Eav/Attribute/ViewCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@
 block discarded – undo
76 76
             'BackendTable'   => array('Backend-Table'),
77 77
             'BackendType'    => array('Backend-Type'),
78 78
             'SourceModel'    => array('Source-Model'),
79
-            'CacheIdTags'    => array('Cache-ID-Tags', function($values) { return implode(',', (array)$values); }),
80
-            'CacheTags'      => array('Cache-Tags', function($values) { return implode(',', (array)$values); }),
79
+            'CacheIdTags'    => array('Cache-ID-Tags', function($values) { return implode(',', (array) $values); }),
80
+            'CacheTags'      => array('Cache-Tags', function($values) { return implode(',', (array) $values); }),
81 81
             'DefaultValue'   => array('Default-Value'),
82
-            'FlatColumns'    => array('Flat-Columns', function($values) { return implode(',', array_keys((array)$values)); }),
83
-            'FlatIndexes'    => array('Flat-Indexes', function($values) { return implode(',', array_keys((array)$values)); })
82
+            'FlatColumns'    => array('Flat-Columns', function($values) { return implode(',', array_keys((array) $values)); }),
83
+            'FlatIndexes'    => array('Flat-Indexes', function($values) { return implode(',', array_keys((array) $values)); })
84 84
         );
85 85
 
86 86
 
Please login to merge, or discard this patch.