TheSeer\phpDox\Generator\ClassStartEvent::getClass PHP Method

getClass() public method

public getClass ( )
    public function getClass()
    {
        return $this->class;
    }

Usage Example

Example #1
0
 public function buildClass(ClassStartEvent $event)
 {
     $this->xslClass->setParameter('', 'type', 'classes');
     $this->xslClass->setParameter('', 'title', 'Classes');
     $html = $this->xslClass->transformToDoc($event->getClass()->asDom());
     $this->saveDomDocument($html, $this->outputDir . '/classes/' . $this->classNameToFileName($event->getClass()->getFullName()));
 }
All Usage Examples Of TheSeer\phpDox\Generator\ClassStartEvent::getClass