Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit ee29811

Browse files
committed
Turned return type annotations of private methods into php return types.
1 parent 78ea858 commit ee29811

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

WebServer.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,7 @@ public function isRunning($pidFile = null)
149149
return false;
150150
}
151151

152-
/**
153-
* @return Process The process
154-
*/
155-
private function createServerProcess(WebServerConfig $config)
152+
private function createServerProcess(WebServerConfig $config): Process
156153
{
157154
$finder = new PhpExecutableFinder();
158155
if (false === $binary = $finder->find(false)) {

0 commit comments

Comments
 (0)