Skip to content

Commit 00a405c

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 9a6ccdb commit 00a405c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/FrankenPhp/ServerProcessInspector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
class ServerProcessInspector implements ServerProcessInspectorContract
1111
{
1212
private const ADMIN_URL = 'http://localhost:2019';
13+
1314
private const FRANKENPHP_CONFIG_URL = self::ADMIN_URL.'/config/apps/frankenphp';
1415

1516
public function __construct(

src/SymfonyProcessFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SymfonyProcessFactory
1212
* @param mixed|null $input
1313
* @return \Symfony\Component\Process\Process
1414
*/
15-
public function createProcess(array $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60)
15+
public function createProcess(array $command, ?string $cwd = null, ?array $env = null, $input = null, ?float $timeout = 60)
1616
{
1717
return new Process($command, $cwd, $env, $input, $timeout);
1818
}

0 commit comments

Comments
 (0)