12 lines
No EOL
254 B
PHP
12 lines
No EOL
254 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Foundation\Core\Application\Bootstrapper;
|
|
|
|
use Foundation\Core\DependencyInjection\InflectableContainer;
|
|
|
|
interface BootstrapperInterface
|
|
{
|
|
public function bootstrap(InflectableContainer $container): void;
|
|
} |