1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/14285] Remove streamed_response

PHPBB3-14285
This commit is contained in:
Rubén Calvo
2018-08-08 16:51:50 +02:00
committed by rubencm
parent b2cea59c3e
commit 5c2a8bbfdf
2 changed files with 3 additions and 34 deletions

View File

@@ -17,8 +17,8 @@ use phpbb\cache\service;
use phpbb\db\driver\driver_interface;
use phpbb\exception\http_exception;
use phpbb\storage\storage;
use phpbb\storage\streamed_response;
use Symfony\Component\HttpFoundation\Request as symfony_request;
use Symfony\Component\HttpFoundation\StreamedResponse;
/**
* Generic controller for storage
@@ -34,7 +34,7 @@ class controller
/** @var storage */
protected $storage;
/** @var streamed_response */
/** @var StreamedResponse */
protected $response;
/** @var symfony_request */
@@ -54,7 +54,7 @@ class controller
$this->db = $db;
$this->storage = $storage;
$this->symfony_request = $symfony_request;
$this->response = new streamed_response();
$this->response = new StreamedResponse();
}
/**