Amranidev\ScaffoldInterface\Parsers\Parser::getParse PHP 메소드

getParse() 공개 메소드

Parse template specification.
public getParse ( ) : string
리턴 string
    public function getParse()
    {
        if (starts_with($this->data['template'], 'boot')) {
            return 'Bt';
        } else {
            return 'Mt';
        }
        throw new \Exception('Template Error');
    }