1
0
mirror of https://github.com/danog/process.git synced 2024-11-26 12:14:43 +01:00

Fix code style

This commit is contained in:
Aaron Piotrowski 2017-12-13 20:33:28 -06:00
parent a13a2926a2
commit 986ff9f8a6
No known key found for this signature in database
GPG Key ID: ADD1EF783EDE9EEB

View File

@ -8,7 +8,7 @@ if (count($command) !== 2) {
exit(1);
}
if ($command[0] === "exit") {
if ($command[0] === "exit") {
echo str_repeat(".", (int) $command[1]);
exit;
}