nur-ture/nur_src/v/model/IChildComponent.php

11 lines
237 B
PHP
Raw Normal View History

2024-11-28 15:39:23 +04:00
<?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;
}