foundation/src/Core/Application/Bootstrapper/BootstrapperInterface.php
2025-06-13 18:29:55 +02:00

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;
}