11 lines
168 B
PHP
11 lines
168 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\App\Container;
|
||
|
|
|
||
|
|
use MintyPHP\App\AppContainer;
|
||
|
|
|
||
|
|
interface ContainerRegistrar
|
||
|
|
{
|
||
|
|
public function register(AppContainer $container): void;
|
||
|
|
}
|