@@ -1,7 +1,7 @@ |
||
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 | } |
@@ -47,7 +47,7 @@ |
||
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(); |