Skip to content

Commit

Permalink
Various improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Sep 17, 2023
1 parent 018b36d commit 4e2e16a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ protected function download($version, $os)
*/
protected function extract($version, $archive)
{
$zip = new ZipArchive;
$zip = new ZipArchive();

$zip->open($archive);

Expand Down
2 changes: 1 addition & 1 deletion tests/UpdateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ protected function chromeVersion()
* @param int|null $major
* @return string
*/
protected function driverVersion($major = null)
protected function driverVersion(int $major = null)
{
if (is_null($major)) {
$versions = json_decode(
Expand Down

0 comments on commit 4e2e16a

Please sign in to comment.