Cake\View\StringTemplate::remove PHP Method

remove() public method

Remove the named template.
public remove ( string $name ) : void
$name string The template to remove.
return void
    public function remove($name)
    {
        $this->config($name, null);
        unset($this->_compiled[$name]);
    }