Flintstone\Config::setExt PHP 메소드

setExt() 공개 메소드

Set the ext.
public setExt ( string $ext )
$ext string
    public function setExt($ext)
    {
        if ('.' != substr($ext, 0, 1)) {
            $ext = '.' . $ext;
        }
        $this->config['ext'] = $ext;
    }