Completed
Push — master ( 30fef4...5a1547 )
by Tomasz
02:56 queued 22s
created
src/Gendoria/CommandQueue/Tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 call_user_func(function() {
4
-    $autoloadFile = __DIR__ . '/../../../../vendor/autoload.php';
4
+    $autoloadFile = __DIR__.'/../../../../vendor/autoload.php';
5 5
     if (!is_file($autoloadFile)) {
6 6
         throw new LogicException('Could not find vendor/autoload.php. Did you forget to run "composer install --dev"?');
7 7
     }
Please login to merge, or discard this patch.
src/Gendoria/CommandQueue/Tests/DirectProcessingDriverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $logger = $this->getMockBuilder('\Psr\Log\LoggerInterface')->getMock();
48 48
         $logger->expects($this->once())
49 49
             ->method('error')
50
-            ->with('Exception while sending command: No processor registered for given command class: '.  get_class($command));
50
+            ->with('Exception while sending command: No processor registered for given command class: '.get_class($command));
51 51
         
52 52
         $processorFactory = new ProcessorFactory();
53 53
         $driver = new DirectProcessingDriver();
Please login to merge, or discard this patch.