Files
kiri-core/core/Events/Struct.php
T

26 lines
341 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
declare(strict_types=1);
2021-08-11 01:04:57 +08:00
namespace Kiri\Events;
2021-08-03 18:18:09 +08:00
/**
*
*/
class Struct
{
2021-08-03 18:22:36 +08:00
public string $event;
2021-08-03 18:18:09 +08:00
2021-08-03 18:22:36 +08:00
public array|\Closure $listener;
2021-08-03 18:18:09 +08:00
2021-08-03 18:22:36 +08:00
public int $priority;
2021-08-03 18:18:09 +08:00
2021-08-03 18:22:36 +08:00
public function __construct(string $event, callable $listener, int $priority)
{
$this->event = $event;
$this->listener = $listener;
$this->priority = $priority;
}
2021-08-03 18:18:09 +08:00
}