| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 12 | final class CreateDatabaseFileRequest |
||
| 13 | { |
||
| 14 | public string $platform; |
||
| 15 | |||
| 16 | public string $dbname; |
||
| 17 | |||
| 18 | public string $username; |
||
| 19 | |||
| 20 | public string $password; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var array<int, string> |
||
| 24 | */ |
||
| 25 | public array $yamls = []; |
||
| 26 | |||
| 27 | public function __construct(string $platform, string $dbname, string $username, string $password, array $yamls) |
||
| 36 |