| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function __construct(string $apiKey) |
||
| 33 | 2 | { |
|
| 34 | $connection = new Connection($apiKey, new HttpClient()); |
||
| 35 | $this->address = new Address($connection); |
||
| 36 | 2 | $this->counterparty = new Counterparty($connection); |
|
| 37 | $this->contactPerson = new ContactPerson($connection); |
||
| 38 | 2 | $this->common = new Common($connection); |
|
| 39 | 1 | $this->internetDocument = new InternetDocument($connection); |
|
| 40 | } |
||
| 42 |