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 7dcf40c commit 6414812Copy full SHA for 6414812
src/Server.php
@@ -41,7 +41,7 @@ class Server
41
*
42
* @param bool $running
43
*/
44
- protected bool $running;
+ protected $running = false;
45
46
/**
47
* The running process
@@ -203,7 +203,7 @@ private function initProcess(): Process
203
return $process;
204
}
205
206
- public function start(callable $callback = null): int
+ public function start(): int
207
{
208
$this->process = $this->initProcess();
209
tests/ServerTest.php
@@ -139,3 +139,4 @@
139
140
expect($server->getProcess())->toBeInstanceOf(Process::class);
141
});
142
+
0 commit comments