mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
10 lines
111 B
PHP
10 lines
111 B
PHP
<?php
|
|
|
|
|
|
namespace crmeb\interfaces;
|
|
|
|
|
|
interface ListenerInterface
|
|
{
|
|
public function handle($event): void;
|
|
} |