Skip to content

Commit

Permalink
Add trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jun 12, 2024
1 parent 73799bb commit 50630ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/BuiltInServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ public function start(): string
. ' php -ArgumentList (\'-S %s\', \'-t %s\', \'%s\') -Passthru; Write-output $proc.Id;',
$this->address,
$this->docroot,
$this->router
$this->router,
);
} else {
$command = sprintf(
'php -S %s -t %s %s >> /dev/null 2>&1 & echo $!',
$this->address,
$this->docroot,
$this->router
$this->router,
);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/InMemoryStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function set(string $type, string $key, mixed $value, ?int $expire = null
self::$store[$key] = [
'type' => $type,
'value' => $value,
'expire' => $expire
'expire' => $expire,
];
}

Expand Down

0 comments on commit 50630ac

Please sign in to comment.