1 | <?php |
||
12 | class StreamResponder implements TransferInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var StreamerInterface |
||
16 | */ |
||
17 | private $streamer; |
||
18 | |||
19 | public function __construct(StreamerInterface $streamer) |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function __invoke(ResourceObject $resourceObject, array $server) |
||
50 | } |
||
51 |