| Total Complexity | 1 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | final class CreateDatabaseFileRequest implements RequestInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $platform; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $dbname; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | public $username; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | public $password; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var array<int, string> |
||
| 38 | */ |
||
| 39 | public $yamls; |
||
| 40 | |||
| 41 | public function __construct(string $platform, string $dbname, string $username, string $password, array $yamls) |
||
| 50 |