mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
18 lines
357 B
PHP
18 lines
357 B
PHP
<?php
|
|
|
|
namespace App\Actions\SourceControl;
|
|
|
|
use App\Models\SourceControl;
|
|
|
|
class DeleteSourceControl
|
|
{
|
|
public function delete(SourceControl $sourceControl): void
|
|
{
|
|
if ($sourceControl->sites()->exists()) {
|
|
throw new \Exception('This source control is being used by a site.');
|
|
}
|
|
|
|
$sourceControl->delete();
|
|
}
|
|
}
|