| Current Path : /home/rtorresani/www/vendor/laminas/laminas-view/src/Model/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-view/src/Model/RetrievableChildrenInterface.php |
<?php
declare(strict_types=1);
namespace Laminas\View\Model;
/**
* Interface describing a Retrievable Child Model
*
* Models implementing this interface provide a way to get there children by capture
*/
interface RetrievableChildrenInterface
{
/**
* Returns an array of View models with captureTo value $capture
*
* @param string $capture
* @param bool $recursive search recursive through children, default true
* @return array
*/
public function getChildrenByCaptureTo($capture, $recursive = true);
}