Completed
Push — master ( b7ac77...2c5eed )
by Christian
04:33 queued 02:23
created
src/N98/Magento/Application/Console/EventSubscriber/CheckCompatibility.php 1 patch
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\Application;
6 6
 use N98\Magento\Application\ApplicationAwareInterface;
7
-use N98\Magento\Application\Console\Event;
8 7
 use N98\Magento\Application\Console\Events;
9 8
 use Symfony\Component\Console\Event\ConsoleEvent;
10 9
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
Please login to merge, or discard this patch.
tests/N98/Magento/Command/Customer/CreateCommandTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
         // We mock the DialogHelper
63 63
         $dialog = $this->createMock('N98\Util\Console\Helper\ParameterHelper', ['askPassword']);
64 64
         $dialog->expects($this->at(0))
65
-               ->method('askPassword')
66
-               ->willReturn(true); // The user confirms
65
+                ->method('askPassword')
66
+                ->willReturn(true); // The user confirms
67 67
 
68 68
         // We override the standard helper with our mock
69 69
         $command->getHelperSet()->set($dialog, 'parameter');
Please login to merge, or discard this patch.