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