Baum\Generators\Generator::getStub PHP Метод

getStub() защищенный Метод

Get the given stub by name.
protected getStub ( $name ) : void
Результат void
    protected function getStub($name)
    {
        if (stripos($name, '.php.stub') === false) {
            $name = $name . '.php.stub';
        }
        return $this->files->get($this->getStubPath() . '/' . $name);
    }