25 lines
816 B
PHP
25 lines
816 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace PhpQml\Bridge;
|
||
|
|
|
||
|
|
use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator;
|
||
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
use Symfony\Component\HttpKernel\Bundle\AbstractBundle;
|
||
|
|
|
||
|
|
final class BridgeBundle extends AbstractBundle
|
||
|
|
{
|
||
|
|
public function loadExtension(array $config, ContainerConfigurator $container, ContainerBuilder $builder): void
|
||
|
|
{
|
||
|
|
$container->import(__DIR__ . '/../config/services.yaml');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function configure(DefinitionConfigurator $definition): void
|
||
|
|
{
|
||
|
|
// Bundle config tree gains nodes when bridge:doctor and the
|
||
|
|
// skeleton's wiring need settable knobs (Phase 1 sub-commits 3 & 6).
|
||
|
|
}
|
||
|
|
}
|