Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/NetteTests/Runners/PresenterResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Wavevision\NetteTests\Runners;

use Nette\Application\IResponse;
use Nette\Application\Response;
use Nette\SmartObject;

class PresenterResponse
Expand All @@ -12,9 +12,9 @@ class PresenterResponse

private PresenterRequest $presenterRequest;

private IResponse $response;
private Response $response;

public function __construct(PresenterRequest $presenterRequest, IResponse $response)
public function __construct(PresenterRequest $presenterRequest, Response $response)
{
$this->presenterRequest = $presenterRequest;
$this->response = $response;
Expand All @@ -25,7 +25,7 @@ public function getPresenterRequest(): PresenterRequest
return $this->presenterRequest;
}

public function getResponse(): IResponse
public function getResponse(): Response
{
return $this->response;
}
Expand Down