PPI\Framework\Module\AbstractModule::getPath PHP 메소드

getPath() 공개 메소드

Gets the Module directory path.
public getPath ( ) : string
리턴 string The Module absolute path
    public function getPath()
    {
        if (null === $this->reflected) {
            $this->reflected = new \ReflectionObject($this);
        }
        return dirname($this->reflected->getFileName());
    }