mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
tests
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
|
||||
namespace App\SiteTypes;
|
||||
|
||||
use App\Enums\SiteFeature;
|
||||
use App\SSH\Services\Webserver\Webserver;
|
||||
use Illuminate\Validation\Rule;
|
||||
|
||||
class PHPMyAdmin extends PHPSite
|
||||
@ -9,7 +11,7 @@ class PHPMyAdmin extends PHPSite
|
||||
public function supportedFeatures(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
SiteFeature::SSL,
|
||||
];
|
||||
}
|
||||
|
||||
@ -20,7 +22,7 @@ public function createRules(array $input): array
|
||||
'required',
|
||||
Rule::in($this->site->server->installedPHPVersions()),
|
||||
],
|
||||
'version' => 'required|string',
|
||||
'version' => 'required',
|
||||
];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user