19 lines
291 B
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
|
|
{
|
|
//
|
|
}
|
|
}
|