Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
48 | public function __construct(string $name, array $config) |
||
49 | 1 | { |
|
50 | $this->name = $name; |
||
51 | $this->apiKey = $config['api_key'] ?? null; |
||
52 | $this->status = $config['status'] ?? null; |
||
53 | $this->indexParameter = $config['index_parameter'] ?? null; |
||
54 | $this->domains = empty($config['domains']) ? [$name] : $config['domains']; |
||
55 | 1 | } |
|
56 | |||
115 |