| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function __construct(string $name, array $config) |
||
| 44 | { |
||
| 45 | $this->name = $name; |
||
| 46 | $this->apiKey = $config['api_key'] ?? null; |
||
| 47 | 1 | $this->indexParameter = $config['index_parameter'] ?? null; |
|
| 48 | $this->domains = empty($config['domains']) ? [$name] : $config['domains']; |
||
| 49 | 1 | } |
|
| 50 | |||
| 101 |