Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-view/src/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-view/src/Model/ClearableModelInterface.php

<?php

declare(strict_types=1);

namespace Laminas\View\Model;

/**
 * Interface describing methods for clearing the state of a view model.
 *
 * View models implementing this interface allow clearing children, options,
 * and variables.
 */
interface ClearableModelInterface
{
    public function clearChildren();

    public function clearOptions();

    public function clearVariables();
}