opnform-host-nginx/api/app/Integrations/Handlers/Events/AbstractIntegrationCreated.php

19 lines
291 B
PHP

<?php
namespace App\Integrations\Handlers\Events;
use App\Models\Integration\FormIntegration;
class AbstractIntegrationCreated
{
public function __construct(
protected FormIntegration $formIntegration
) {
}
public function handle(): void
{
//
}
}