| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __construct( |
||
| 38 | UrlCollection $urls, |
||
| 39 | RequestTimeout $requestTimeout, |
||
| 40 | FollowRedirect $followRedirect, |
||
| 41 | BasicAuth $basicAuth = null |
||
| 42 | ) { |
||
| 43 | $this->urls = $urls; |
||
| 44 | $this->requestTimeout = $requestTimeout; |
||
| 45 | $this->followRedirect = $followRedirect; |
||
| 46 | $this->basicAuth = $basicAuth; |
||
| 47 | } |
||
| 48 | |||
| 81 |