callable = $callable; $this->args = $args; $this->args[] = $this; } /** * @return callable */ public function getCallable(){ return $this->callable; } public function onRun($currentTicks){ call_user_func_array($this->callable, $this->args); } }