Amranidev\ScaffoldInterface\Parsers\Parser::getParse PHP Method

getParse() public method

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