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 | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
15 | public function __construct() { |
||
16 | $config = Dotenv::createArrayBacked(ROOT); |
||
17 | $array = $config->load(); |
||
18 | self::validateConfig($config); |
||
19 | [ |
||
20 | self::CONFIG_MYSQL_HOST => $this->host, |
||
21 | self::CONFIG_MYSQL_USER => $this->user, |
||
22 | self::CONFIG_MYSQL_PASSWORD => $this->password, |
||
23 | self::CONFIG_MYSQL_DATABASE => $this->databaseName, |
||
24 | ] = $array; |
||
25 | } |
||
50 |