改名
This commit is contained in:
@@ -1,16 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Snowflake\Abstracts;
|
||||
|
||||
|
||||
use Snowflake\Core\Dtl;
|
||||
|
||||
|
||||
/**
|
||||
* Interface IListener
|
||||
* @package Snowflake\Abstracts
|
||||
*/
|
||||
interface IListener
|
||||
{
|
||||
|
||||
|
||||
public function handler(Dtl $dtl);
|
||||
/**
|
||||
* @param Dtl $dtl
|
||||
* @return mixed
|
||||
*/
|
||||
public function execute(Dtl $dtl): mixed;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user