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