mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-29 18:14:38 -05:00
21 lines
515 B
PHP
21 lines
515 B
PHP
<?php
|
|
|
|
namespace App\Support\DatabaseImport;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
readonly class DatabaseImportSource
|
|
{
|
|
public function __construct(
|
|
public string $type,
|
|
public ?string $uploadId = null,
|
|
public ?string $path = null,
|
|
public ?string $s3StorageUuid = null,
|
|
public bool $dumpAll = false,
|
|
) {
|
|
if (! in_array($type, ['upload', 's3', 'server'], true)) {
|
|
throw new InvalidArgumentException('Invalid database import source.');
|
|
}
|
|
}
|
|
}
|