2024-09-28 13:03:15 +09:00
|
|
|
<?php
|
|
|
|
|
class Event
|
|
|
|
|
{
|
|
|
|
|
protected $action;
|
|
|
|
|
public $priority;
|
|
|
|
|
public $arguments;
|
|
|
|
|
|
|
|
|
|
public function __construct($action, $priority = 10)
|
|
|
|
|
{
|
|
|
|
|
$this->action = $action;
|
|
|
|
|
$this->priority = $priority;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getAction(...$data)
|
|
|
|
|
{
|
2024-10-01 01:40:29 +09:00
|
|
|
return call_user_func_array($this->action, $data);
|
2024-09-28 13:03:15 +09:00
|
|
|
}
|
|
|
|
|
}
|