改名
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Snowflake\Abstracts;
|
||||
|
||||
|
||||
use Snowflake\Core\Dtl;
|
||||
|
||||
interface IListener
|
||||
{
|
||||
|
||||
|
||||
public function handler(Dtl $dtl);
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Snowflake\Abstracts;
|
||||
|
||||
|
||||
/**
|
||||
* Class Listener
|
||||
* @package Snowflake\Abstracts
|
||||
* 监听的名称
|
||||
*/
|
||||
abstract class Listener extends Component implements IListener
|
||||
{
|
||||
|
||||
protected $name = '';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user