Completed
Push — develop ( f15e43...2c0376 )
by Tom
08:52
created
src/N98/Magento/Command/Developer/Console/MakeControllerCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace N98\Magento\Command\Developer\Console;
4 4
 
5 5
 use Magento\Framework\Controller\ResultFactory;
6
-use Magento\Framework\Module\Dir;
7 6
 use Symfony\Component\Console\Input\InputArgument;
8 7
 use Symfony\Component\Console\Input\InputInterface;
9 8
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/Shell.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use N98\Magento\Command\Developer\Console\Exception\NoModuleDefinedException;
6 6
 use N98\Util\BinaryString;
7
-use Psy\Configuration;
8 7
 use Psy\Exception\ErrorException;
9 8
 use Psy\Exception\FatalErrorException;
10 9
 use Psy\Exception\ParseErrorException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
      */
105 105
     public function setPrompt($prompt)
106 106
     {
107
-        $this->prompt =  $prompt;
107
+        $this->prompt = $prompt;
108 108
     }
109 109
 
110 110
     /**
Please login to merge, or discard this patch.
src/N98/Magento/Command/Developer/Console/MakeThemeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
                 $output,
68 68
                 $appDirWriter,
69 69
                 $relativePath,
70
-                ucfirst($input->getArgument('package')) . ' '. $input->getArgument('name')
70
+                ucfirst($input->getArgument('package')) . ' ' . $input->getArgument('name')
71 71
             );
72 72
         }
73 73
 
Please login to merge, or discard this patch.
src/N98/Magento/Command/Installer/SubCommand/DownloadMagento.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             throw new RuntimeException('A magento installation already exists in this folder');
41 41
         }
42 42
 
43
-        $args = new ProcessArguments(array($this->config['composer_bin'], 'create-project', ));
43
+        $args = new ProcessArguments(array($this->config['composer_bin'], 'create-project',));
44 44
         $args
45 45
             // Add composer options
46 46
             ->addArgs($package['options'])
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/VariablesCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         'thread_cache_size'               => '',
41 41
         'tmp_table_size'                  => array(
42 42
             'desc' => '', // @todo add description everywhere
43
-            'opt'  => '',  // @todo calculate somehow the optimal values depending on the MySQL server environment
43
+            'opt'  => '', // @todo calculate somehow the optimal values depending on the MySQL server environment
44 44
         ),
45 45
     );
46 46
 
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/AbstractSetupCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use InvalidArgumentException;
6 6
 use Magento\Framework\Module\ModuleListInterface;
7 7
 use Magento\Framework\Module\ResourceInterface;
8
-use N98\Magento\Api\ModuleListIterator;
9 8
 use N98\Magento\Command\AbstractMagentoCommand;
10 9
 
11 10
 /**
Please login to merge, or discard this patch.