We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec7819 commit f383c17Copy full SHA for f383c17
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `phpunit-watcher` will be documented in this file
4
5
+## 1.9.1 - 2019-03-25
6
+
7
+- fix for deprecated symfony/process string construction
8
9
## 1.9.0 - 2019-03-25
10
11
- add `hideManual` option
src/Screens/Phpunit.php
@@ -90,7 +90,7 @@ protected function writeHeader()
90
91
protected function runTests()
92
{
93
- $result = (new Process("{$this->phpunitBinaryPath} {$this->phpunitArguments}"))
+ $result = (new Process(["{$this->phpunitBinaryPath} {$this->phpunitArguments}"]))
94
->setTty(true)
95
->run(function ($type, $line) {
96
echo $line;
0 commit comments