| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 5 | class Config |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | public $database; |
||
| 9 | |||
| 10 | /** @var string */ |
||
| 11 | public $username; |
||
| 12 | |||
| 13 | /** @var string */ |
||
| 14 | public $password; |
||
| 15 | |||
| 16 | /** @var string */ |
||
| 17 | public $host; |
||
| 18 | |||
| 19 | /** @var int */ |
||
| 20 | public $port; |
||
| 21 | |||
| 22 | |||
| 23 | public function __construct(string $database, string $username, string $password, string $host, int $port) |
||
| 33 |