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

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

Restore the most recently pushed set of templates.
public pop ( ) : void
Результат void
    public function pop()
    {
        if (empty($this->_configStack)) {
            return;
        }
        list($this->_config, $this->_compiled) = array_pop($this->_configStack);
    }