mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
30 lines
541 B
PHP
Executable File
30 lines
541 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Site;
|
|
|
|
use App\Models\Site;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class UpdateDeploymentScript
|
|
{
|
|
/**
|
|
* @throws ValidationException
|
|
*/
|
|
public function update(Site $site, array $input): void
|
|
{
|
|
$site->deploymentScript()->update([
|
|
'content' => $input['script'],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @throws ValidationException
|
|
*/
|
|
public static function rules(): array
|
|
{
|
|
return [
|
|
'script' => ['required', 'string'],
|
|
];
|
|
}
|
|
}
|