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

11 lines
237 B
PHP
Raw Normal View History

2023-12-03 22:10:18 +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;
}