Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
39 | public function __construct(FeedIo $feedIo, HeadersBuilder $headersBuilder, ModifiedSince $modifiedSince, bool $forceRefresh = false) |
||
40 | { |
||
41 | $this->feedIo = $feedIo; |
||
42 | $this->headersBuilder = $headersBuilder; |
||
43 | $this->modifiedSince = $modifiedSince; |
||
44 | $this->forceRefresh = $forceRefresh; |
||
45 | } |
||
46 | |||
67 |