| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 2 | public function __construct( |
|
| 50 | HttpClient $client, |
||
| 51 | ResponseRepair $repair, |
||
| 52 | ErrorDetector $detector, |
||
| 53 | $host, |
||
| 54 | $app_client |
||
| 55 | ) { |
||
| 56 | 2 | $this->client = $client; |
|
| 57 | 2 | $this->repair = $repair; |
|
| 58 | 2 | $this->detector = $detector; |
|
| 59 | 2 | $this->host = $host; |
|
| 60 | 2 | $this->app_client = $app_client; |
|
| 61 | 2 | } |
|
| 62 | |||
| 86 |