1 | <?php |
||
12 | class FeedParserFile extends \SimplePie_File |
||
13 | { |
||
14 | protected $http; |
||
15 | /** @noinspection PhpMissingParentConstructorInspection */ |
||
16 | |||
17 | /** |
||
18 | * Inititializes the HTTPClient |
||
19 | * |
||
20 | * We ignore all given parameters - they are set in DokuHTTPClient |
||
21 | * |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | public function __construct( |
||
44 | |||
45 | /** @inheritdoc */ |
||
46 | public function headers() |
||
50 | |||
51 | /** @inheritdoc */ |
||
52 | public function body() |
||
56 | |||
57 | /** @inheritdoc */ |
||
58 | public function close() |
||
62 | } |
||
63 |