11 lines
237 B
PHP
11 lines
237 B
PHP
|
<?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;
|
||
|
}
|