Skip to content

Commit

Permalink
Merge branch '6.2' into 6.3
Browse files Browse the repository at this point in the history
* 6.2:
  [Finder] Fix initial directory is opened twice
  typo fix
  Fix test
  Fix some return types in tests
  • Loading branch information
nicolas-grekas committed Jul 6, 2023
2 parents 0eb7228 + 87bd432 commit ca4a988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/TestClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function doRequest(object $request): Response
return $response;
}

protected function getScript(object $request)
protected function getScript(object $request): string
{
$r = new \ReflectionClass(Response::class);
$path = $r->getFileName();
Expand Down
2 changes: 1 addition & 1 deletion Tests/TestHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected function doRequest(object $request): Response
return $response;
}

protected function getScript(object $request)
protected function getScript(object $request): string
{
$r = new \ReflectionClass(Response::class);
$path = $r->getFileName();
Expand Down

0 comments on commit ca4a988

Please sign in to comment.