namespace Shopware\Bundle\CustomerSearchBundleDBAL;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class CustomerSearchBundleDBALBundle extends Bundle
{ public function build(ContainerBuilder
$container): void
{ parent::
build($container);
$loader =
new XmlFileLoader($container,
new FileLocator(__DIR__ . '/DependencyInjection'
));
$loader->
load('services.xml'
);
}}