16 lines
213 B
PHP
16 lines
213 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Actions\Webhook;
|
||
|
|
|
||
|
|
use App\Models\Webhook;
|
||
|
|
|
||
|
|
class DeleteWebhook
|
||
|
|
{
|
||
|
|
public static function execute(Webhook $webhook): void
|
||
|
|
{
|
||
|
|
$webhook->delete();
|
||
|
|
}
|
||
|
|
}
|