Skip to content

Commit 070ab75

Browse files
committed
Formatting
1 parent c963277 commit 070ab75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MockWebServer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,8 @@ private function startServer( string $fullCmd ) {
293293

294294
$descriptorSpec = [
295295
0 => $stdin,
296-
1 => [ "file", $stdoutf, "a" ],
297-
2 => [ "file", $stderrf, "a" ],
296+
1 => [ 'file', $stdoutf, 'a' ],
297+
2 => [ 'file', $stderrf, 'a' ],
298298
];
299299

300300
$process = proc_open($fullCmd, $descriptorSpec, $pipes, $cwd, $env, [
@@ -306,7 +306,7 @@ private function startServer( string $fullCmd ) {
306306
return $process;
307307
}
308308

309-
throw new Exceptions\ServerException("Error starting server");
309+
throw new Exceptions\ServerException('Error starting server');
310310
}
311311

312312
}

0 commit comments

Comments
 (0)