Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1daa2a7 + 1132f6e commit e361824Copy full SHA for e361824
Tests/ExecutableFinderTest.php
@@ -19,7 +19,7 @@
19
*/
20
class ExecutableFinderTest extends TestCase
21
{
22
- private $path;
+ private string|false $path = false;
23
24
protected function tearDown(): void
25
Tests/ProcessTest.php
@@ -28,9 +28,9 @@
28
29
class ProcessTest extends TestCase
30
31
- private static $phpBin;
32
- private static $process;
33
- private static $sigchild;
+ private static string $phpBin;
+ private static ?Process $process = null;
+ private static bool $sigchild;
34
35
public static function setUpBeforeClass(): void
36
0 commit comments