className = $className; } /** * {@inheritDoc} * * @return array */ public function check() { if (class_exists($this->className)) { return array(EnvironmentCheck::OK, 'Class ' . $this->className.' exists'); } return array(EnvironmentCheck::ERROR, 'Class ' . $this->className.' doesn\'t exist'); } }