<?php
namespace nur\v\model;
/**
* Interface IChildComponent: un composant qui est en relation avec une instance
* de {@link IPageContainer}
*/
interface IChildComponent {
function initContainer(IPageContainer $container): void;
}