Skip to content

Commit f383c17

Browse files
Fix for deprecated symfony/process string construction
1 parent 7ec7819 commit f383c17

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `phpunit-watcher` will be documented in this file
44

5+
## 1.9.1 - 2019-03-25
6+
7+
- fix for deprecated symfony/process string construction
8+
59
## 1.9.0 - 2019-03-25
610

711
- add `hideManual` option

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(["{$this->phpunitBinaryPath} {$this->phpunitArguments}"]))
9494
->setTty(true)
9595
->run(function ($type, $line) {
9696
echo $line;

0 commit comments

Comments
 (0)