改名
This commit is contained in:
@@ -1,16 +1,26 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace Snowflake\Abstracts;
|
namespace Snowflake\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Snowflake\Core\Dtl;
|
use Snowflake\Core\Dtl;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface IListener
|
||||||
|
* @package Snowflake\Abstracts
|
||||||
|
*/
|
||||||
interface IListener
|
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