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