Cake\View\StringTemplate::remove PHP Метод

remove() публичный Метод

Remove the named template.
public remove ( string $name ) : void
$name string The template to remove.
Результат void
    public function remove($name)
    {
        $this->config($name, null);
        unset($this->_compiled[$name]);
    }