1 | <?php |
||
15 | class PartialFrame implements FrameInterface |
||
16 | { |
||
17 | /** |
||
18 | * Original frame |
||
19 | * |
||
20 | * @var FrameInterface |
||
21 | */ |
||
22 | private $original; |
||
23 | |||
24 | /** |
||
25 | * PartialFrame constructor. |
||
26 | * |
||
27 | * @param FrameInterface $original Original frame |
||
28 | */ |
||
29 | 7 | public function __construct(FrameInterface $original) |
|
33 | |||
34 | /** {@inheritdoc} */ |
||
35 | 1 | public function getData() |
|
39 | |||
40 | /** {@inheritdoc} */ |
||
41 | 2 | public function __toString() |
|
45 | |||
46 | /** {@inheritdoc} */ |
||
47 | 1 | public function getRemoteAddress() |
|
51 | } |
||
52 |