Revert "改名"

This reverts commit fdf58326
This commit is contained in:
2022-01-08 18:49:07 +08:00
parent fd01c8b33c
commit 2c31bea602
4 changed files with 1 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
namespace Kiri\Events;
/**
*
*/
class Struct
{
public string $event;
public array|\Closure $listener;
public int $priority;
public function __construct(string $event, callable $listener, int $priority)
{
$this->event = $event;
$this->listener = $listener;
$this->priority = $priority;
}
}