| 1 | <?php declare(strict_types=1); |
||
| 10 | final class StreamingResponse |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ResponseInterface |
||
| 14 | */ |
||
| 15 | private $response; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param ResponseInterface $response |
||
| 19 | */ |
||
| 20 | public function __construct(ResponseInterface $response) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return ResponseInterface |
||
| 27 | */ |
||
| 28 | public function getResponse(): ResponseInterface |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return Observable |
||
| 35 | */ |
||
| 36 | public function subscribe(): Observable |
||
| 54 | } |
||
| 55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.