callback = $callback; $this->params = $params; } /** * Perform the Check * * @see \ZendDiagnostics\Check\CheckInterface::check() * @return mixed */ public function check() { return call_user_func_array($this->callback, $this->params); } }