Skip to content

Commit bf94fb7

Browse files
yjv-XCVfreekmurze
authored andcommitted
fixing symfony process component changes from v3.3 to v3.4 (#90)
* fixing symfony process component changes from v3.3 to v3.4 * allow multiple attributes to align with symfony update * psr fixing
1 parent 7b8d760 commit bf94fb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Screens/Phpunit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function writeHeader()
9090

9191
protected function runTests()
9292
{
93-
$result = (new Process(["{$this->phpunitBinaryPath} {$this->phpunitArguments}"]))
93+
$result = (new Process(array_merge([$this->phpunitBinaryPath], explode(' ', $this->phpunitArguments))))
9494
->setTty(true)
9595
->run(function ($type, $line) {
9696
echo $line;

0 commit comments

Comments
 (0)