We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1);  | 
            ||
| 17 | 	public function __construct(Dotenv $config) { | 
            ||
| 18 | $array = $config->load();  | 
            ||
| 19 | self::validateConfig($config);  | 
            ||
| 20 | [  | 
            ||
| 21 | self::CONFIG_MYSQL_HOST => $this->host,  | 
            ||
| 22 | self::CONFIG_MYSQL_USER => $this->user,  | 
            ||
| 23 | self::CONFIG_MYSQL_PASSWORD => $this->password,  | 
            ||
| 24 | self::CONFIG_MYSQL_DATABASE => $this->databaseName,  | 
            ||
| 25 | ] = $array;  | 
            ||
| 26 | }  | 
            ||
| 51 |