1 | <?php |
||
14 | class AbstractParser { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $htmlResponse; |
||
19 | |||
20 | public function __construct($response) { |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | protected function getHtmlResponse() { |
||
30 | |||
31 | /** |
||
32 | * @param string $htmlResponse |
||
33 | */ |
||
34 | protected function setHtmlResponse($htmlResponse) { |
||
37 | } |