=: cannot open `=' (No such file or directory) =: cannot open `=' (No such file or directory) Expected to find class "App\Form\LessonType" in file "/www/htdocs/w0195fef/projects/sb/src/Form/LessonType.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /www/htdocs/w0195fef/projects/sb/config/services.yaml (which is being imported from "/www/htdocs/w0195fef/projects/sb/src/Kernel.php"). (500 Internal Server Error)

Symfony Exception

InvalidArgumentException LoaderLoadException

HTTP 500 Internal Server Error

Expected to find class "App\Form\LessonType" in file "/www/htdocs/w0195fef/projects/sb/src/Form/LessonType.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /www/htdocs/w0195fef/projects/sb/config/services.yaml (which is being imported from "/www/htdocs/w0195fef/projects/sb/src/Kernel.php").

Exceptions 2

Symfony\Component\Config\Exception\ LoaderLoadException

  1. // prevent embedded imports from nesting multiple exceptions
  2. if ($e instanceof LoaderLoadException) {
  3. throw $e;
  4. }
  5. throw new LoaderLoadException($resource, $sourceResource, 0, $e, $type);
  6. }
  7. }
  8. return null;
  9. }
  1. }
  2. $ret = [];
  3. $isSubpath = 0 !== $i && str_contains(substr($resource, 0, $i), '/');
  4. foreach ($this->glob($resource, false, $_, $ignoreErrors || !$isSubpath, false, $excluded) as $path => $info) {
  5. if (null !== $res = $this->doImport($path, 'glob' === $type ? null : $type, $ignoreErrors, $sourceResource)) {
  6. $ret[] = $res;
  7. }
  8. $isSubpath = true;
  9. }
  1. throw new \TypeError(\sprintf('Invalid argument $ignoreErrors provided to "%s::import()": boolean or "not_found" expected, "%s" given.', static::class, get_debug_type($ignoreErrors)));
  2. }
  3. ++$this->importing;
  4. try {
  5. return parent::import(...$args);
  6. } catch (LoaderLoadException $e) {
  7. if (!$ignoreNotFound || !($prev = $e->getPrevious()) instanceof FileLocatorFileNotFoundException) {
  8. throw $e;
  9. }
  1. }
  2. final public function import(string $resource, ?string $type = null, bool|string $ignoreErrors = false): void
  3. {
  4. $this->loader->setCurrentDir(\dirname($this->path));
  5. $this->loader->import($resource, $type, $ignoreErrors, $this->file);
  6. }
  7. final public function parameters(): ParametersConfigurator
  8. {
  9. return new ParametersConfigurator($this->container);
  1. $container->import($configDir.'/{packages}/*.{php,yaml}');
  2. $container->import($configDir.'/{packages}/'.$this->environment.'/*.{php,yaml}');
  3. if (is_file($this->getConfigDir().'/services.yaml')) {
  4. $container->import($configDir.'/services.yaml');
  5. $container->import($configDir.'/{services}_'.$this->environment.'.yaml');
  6. } else {
  7. $container->import($configDir.'/{services}.php');
  8. $container->import($configDir.'/{services}_'.$this->environment.'.php');
  9. }
  1. $valuePreProcessor = AbstractConfigurator::$valuePreProcessor;
  2. AbstractConfigurator::$valuePreProcessor = fn ($value) => $this === $value ? new Reference('kernel') : $value;
  3. try {
  4. $configureContainer->getClosure($this)(new ContainerConfigurator($container, $kernelLoader, $instanceof, $file, $file, $this->getEnvironment()), $loader, $container);
  5. } finally {
  6. $instanceof = [];
  7. $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  8. AbstractConfigurator::$valuePreProcessor = $valuePreProcessor;
  9. }
in /www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/ClosureLoader.php -> {closure:Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait::registerContainerConfiguration():164} (line 35)
  1. parent::__construct($env);
  2. }
  3. public function load(mixed $resource, ?string $type = null): mixed
  4. {
  5. return $resource($this->container, $this->env);
  6. }
  7. public function supports(mixed $resource, ?string $type = null): bool
  8. {
  9. return $resource instanceof \Closure;
  1. {
  2. if (false === $loader = $this->resolver->resolve($resource, $type)) {
  3. throw new LoaderLoadException($resource, null, 0, null, $type);
  4. }
  5. return $loader->load($resource, $type);
  6. }
  7. public function supports(mixed $resource, ?string $type = null): bool
  8. {
  9. return false !== $this->resolver->resolve($resource, $type);
  1. }
  2. }
  3. public function registerContainerConfiguration(LoaderInterface $loader): void
  4. {
  5. $loader->load(function (ContainerBuilder $container) use ($loader) {
  6. $container->loadFromExtension('framework', [
  7. 'router' => [
  8. 'resource' => 'kernel::loadRoutes',
  9. 'type' => 'service',
  10. ],
in /www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php -> registerContainerConfiguration (line 600)
  1. }
  2. $container = $this->getContainerBuilder();
  3. $container->addObjectResource($this);
  4. $this->prepareContainer($container);
  5. $this->registerContainerConfiguration($this->getContainerLoader($container));
  6. return $container;
  7. }
  8. /**
  1. });
  2. }
  3. try {
  4. $container = null;
  5. $container = $this->buildContainer();
  6. $container->compile();
  7. } finally {
  8. if ($collectDeprecations) {
  9. restore_error_handler();
  1. $_ENV['SHELL_VERBOSITY'] = 3;
  2. $_SERVER['SHELL_VERBOSITY'] = 3;
  3. }
  4. $this->initializeBundles();
  5. $this->initializeContainer();
  6. $container = $this->container;
  7. if ($container->hasParameter('kernel.trusted_hosts') && $trustedHosts = $container->getParameter('kernel.trusted_hosts')) {
  8. Request::setTrustedHosts(\is_array($trustedHosts) ? $trustedHosts : preg_split('/\s*+,\s*+(?![^{]*})/', $trustedHosts));
  1. }
  2. public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  3. {
  4. if (!$this->booted) {
  5. $container = $this->container ?? $this->preBoot();
  6. if ($container->has('http_cache')) {
  7. $this->handlingHttpCache = true;
  8. try {
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php') in /www/htdocs/w0195fef/projects/sb/public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\DependencyInjection\Exception\ InvalidArgumentException

Expected to find class "App\Form\LessonType" in file "/www/htdocs/w0195fef/projects/sb/src/Form/LessonType.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource.

  1. $classes[$class] = $e->getMessage();
  2. continue;
  3. }
  4. // check to make sure the expected class exists
  5. if (!$r) {
  6. throw new InvalidArgumentException(\sprintf('Expected to find class "%s" in file "%s" while importing services from resource "%s", but it was not found! Check the namespace prefix used with the resource.', $class, $path, $pattern));
  7. }
  8. if (!$r->isTrait()) {
  9. $classes[$class] = null;
  10. }
  1. throw new InvalidArgumentException('The exclude list must not contain an empty value.');
  2. }
  3. $autoconfigureAttributes = new RegisterAutoconfigureAttributesPass();
  4. $autoconfigureAttributes = $autoconfigureAttributes->accept($prototype) ? $autoconfigureAttributes : null;
  5. $classes = $this->findClasses($namespace, $resource, (array) $exclude, $source);
  6. $getPrototype = static fn () => clone $prototype;
  7. $serialized = serialize($prototype);
  8. // avoid deep cloning if no definitions are nested
  1. if (!\is_string($service['resource'])) {
  2. throw new InvalidArgumentException(\sprintf('A "resource" attribute must be of type string for service "%s" in "%s".', $id, $file));
  3. }
  4. $exclude = $service['exclude'] ?? null;
  5. $namespace = $service['namespace'] ?? $id;
  6. $this->registerClasses($definition, $namespace, $service['resource'], $exclude, $file);
  7. } else {
  8. $this->setDefinition($id, $definition);
  9. }
  10. return null;
  1. }
  2. $this->isLoadingInstanceof = false;
  3. $defaults = $this->parseDefaults($content, $file);
  4. foreach ($content['services'] as $id => $service) {
  5. $this->parseDefinition($id, $service, $file, $defaults, false, $trackBindings);
  6. }
  7. }
  8. /**
  9. * @throws InvalidArgumentException
  1. // services
  2. $this->anonymousServicesCount = 0;
  3. $this->anonymousServicesSuffix = '~'.ContainerBuilder::hash($path);
  4. $this->setCurrentDir(\dirname($path));
  5. try {
  6. $this->parseDefinitions($content, $path);
  7. } finally {
  8. $this->instanceof = [];
  9. $this->registerAliasesForSinglyImplementedInterfaces();
  10. }
  11. }
  1. return null;
  2. }
  3. ++$this->importing;
  4. try {
  5. $this->loadContent($content, $path);
  6. // per-env configuration
  7. if ($this->env && isset($content[$when = 'when@'.$this->env])) {
  8. if (!\is_array($content[$when])) {
  9. throw new InvalidArgumentException(\sprintf('The "%s" key should contain an array in "%s".', $when, $path));
  1. }
  2. }
  3. self::$loading[$resource] = true;
  4. try {
  5. $ret = $loader->load($resource, $type);
  6. } finally {
  7. unset(self::$loading[$resource]);
  8. }
  9. return $ret;
  1. }
  2. $ret = [];
  3. $isSubpath = 0 !== $i && str_contains(substr($resource, 0, $i), '/');
  4. foreach ($this->glob($resource, false, $_, $ignoreErrors || !$isSubpath, false, $excluded) as $path => $info) {
  5. if (null !== $res = $this->doImport($path, 'glob' === $type ? null : $type, $ignoreErrors, $sourceResource)) {
  6. $ret[] = $res;
  7. }
  8. $isSubpath = true;
  9. }
  1. throw new \TypeError(\sprintf('Invalid argument $ignoreErrors provided to "%s::import()": boolean or "not_found" expected, "%s" given.', static::class, get_debug_type($ignoreErrors)));
  2. }
  3. ++$this->importing;
  4. try {
  5. return parent::import(...$args);
  6. } catch (LoaderLoadException $e) {
  7. if (!$ignoreNotFound || !($prev = $e->getPrevious()) instanceof FileLocatorFileNotFoundException) {
  8. throw $e;
  9. }
  1. }
  2. final public function import(string $resource, ?string $type = null, bool|string $ignoreErrors = false): void
  3. {
  4. $this->loader->setCurrentDir(\dirname($this->path));
  5. $this->loader->import($resource, $type, $ignoreErrors, $this->file);
  6. }
  7. final public function parameters(): ParametersConfigurator
  8. {
  9. return new ParametersConfigurator($this->container);
  1. $container->import($configDir.'/{packages}/*.{php,yaml}');
  2. $container->import($configDir.'/{packages}/'.$this->environment.'/*.{php,yaml}');
  3. if (is_file($this->getConfigDir().'/services.yaml')) {
  4. $container->import($configDir.'/services.yaml');
  5. $container->import($configDir.'/{services}_'.$this->environment.'.yaml');
  6. } else {
  7. $container->import($configDir.'/{services}.php');
  8. $container->import($configDir.'/{services}_'.$this->environment.'.php');
  9. }
  1. $valuePreProcessor = AbstractConfigurator::$valuePreProcessor;
  2. AbstractConfigurator::$valuePreProcessor = fn ($value) => $this === $value ? new Reference('kernel') : $value;
  3. try {
  4. $configureContainer->getClosure($this)(new ContainerConfigurator($container, $kernelLoader, $instanceof, $file, $file, $this->getEnvironment()), $loader, $container);
  5. } finally {
  6. $instanceof = [];
  7. $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  8. AbstractConfigurator::$valuePreProcessor = $valuePreProcessor;
  9. }
in /www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/ClosureLoader.php -> {closure:Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait::registerContainerConfiguration():164} (line 35)
  1. parent::__construct($env);
  2. }
  3. public function load(mixed $resource, ?string $type = null): mixed
  4. {
  5. return $resource($this->container, $this->env);
  6. }
  7. public function supports(mixed $resource, ?string $type = null): bool
  8. {
  9. return $resource instanceof \Closure;
  1. {
  2. if (false === $loader = $this->resolver->resolve($resource, $type)) {
  3. throw new LoaderLoadException($resource, null, 0, null, $type);
  4. }
  5. return $loader->load($resource, $type);
  6. }
  7. public function supports(mixed $resource, ?string $type = null): bool
  8. {
  9. return false !== $this->resolver->resolve($resource, $type);
  1. }
  2. }
  3. public function registerContainerConfiguration(LoaderInterface $loader): void
  4. {
  5. $loader->load(function (ContainerBuilder $container) use ($loader) {
  6. $container->loadFromExtension('framework', [
  7. 'router' => [
  8. 'resource' => 'kernel::loadRoutes',
  9. 'type' => 'service',
  10. ],
in /www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php -> registerContainerConfiguration (line 600)
  1. }
  2. $container = $this->getContainerBuilder();
  3. $container->addObjectResource($this);
  4. $this->prepareContainer($container);
  5. $this->registerContainerConfiguration($this->getContainerLoader($container));
  6. return $container;
  7. }
  8. /**
  1. });
  2. }
  3. try {
  4. $container = null;
  5. $container = $this->buildContainer();
  6. $container->compile();
  7. } finally {
  8. if ($collectDeprecations) {
  9. restore_error_handler();
  1. $_ENV['SHELL_VERBOSITY'] = 3;
  2. $_SERVER['SHELL_VERBOSITY'] = 3;
  3. }
  4. $this->initializeBundles();
  5. $this->initializeContainer();
  6. $container = $this->container;
  7. if ($container->hasParameter('kernel.trusted_hosts') && $trustedHosts = $container->getParameter('kernel.trusted_hosts')) {
  8. Request::setTrustedHosts(\is_array($trustedHosts) ? $trustedHosts : preg_split('/\s*+,\s*+(?![^{]*})/', $trustedHosts));
  1. }
  2. public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  3. {
  4. if (!$this->booted) {
  5. $container = $this->container ?? $this->preBoot();
  6. if ($container->has('http_cache')) {
  7. $this->handlingHttpCache = true;
  8. try {
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php') in /www/htdocs/w0195fef/projects/sb/public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Stack Traces 2

[2/2] LoaderLoadException
Symfony\Component\Config\Exception\LoaderLoadException:
Expected to find class "App\Form\LessonType" in file "/www/htdocs/w0195fef/projects/sb/src/Form/LessonType.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /www/htdocs/w0195fef/projects/sb/config/services.yaml (which is being imported from "/www/htdocs/w0195fef/projects/sb/src/Kernel.php").

  at /www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/FileLoader.php:177
  at Symfony\Component\Config\Loader\FileLoader->doImport('/www/htdocs/w0195fef/projects/sb/config/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/FileLoader.php:82)
  at Symfony\Component\Config\Loader\FileLoader->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/FileLoader.php:78)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php:67)
  at Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:58)
  at App\Kernel->configureContainer(object(ContainerConfigurator), object(DelegatingLoader), object(ContainerBuilder))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:208)
  at App\Kernel->{closure:Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait::registerContainerConfiguration():164}(object(ContainerBuilder), 'prod')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/ClosureLoader.php:35)
  at Symfony\Component\DependencyInjection\Loader\ClosureLoader->load(object(Closure), null)
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/DelegatingLoader.php:37)
  at Symfony\Component\Config\Loader\DelegatingLoader->load(object(Closure))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:164)
  at App\Kernel->registerContainerConfiguration(object(DelegatingLoader))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:600)
  at Symfony\Component\HttpKernel\Kernel->buildContainer()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:487)
  at Symfony\Component\HttpKernel\Kernel->initializeContainer()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:732)
  at Symfony\Component\HttpKernel\Kernel->preBoot()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:170)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php:32)
  at require_once('/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php')
     (/www/htdocs/w0195fef/projects/sb/public/index.php:5)                
[1/2] InvalidArgumentException
Symfony\Component\DependencyInjection\Exception\InvalidArgumentException:
Expected to find class "App\Form\LessonType" in file "/www/htdocs/w0195fef/projects/sb/src/Form/LessonType.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource.

  at /www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/FileLoader.php:369
  at Symfony\Component\DependencyInjection\Loader\FileLoader->findClasses('App\\', '../src/', array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Controller/_dup_backup/', '../src/Controller/_legacy/'), '/www/htdocs/w0195fef/projects/sb/config/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/FileLoader.php:129)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->registerClasses(object(Definition), 'App\\', '../src/', array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Controller/_dup_backup/', '../src/Controller/_legacy/'), '/www/htdocs/w0195fef/projects/sb/config/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:714)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinition('App\\', array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Controller/_dup_backup/', '../src/Controller/_legacy/')), '/www/htdocs/w0195fef/projects/sb/config/services.yaml', array('autowire' => true, 'autoconfigure' => true), false, true)
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:257)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinitions(array('parameters' => null, 'services' => array('App\' => array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Controller/_dup_backup/', '../src/Controller/_legacy/')), 'App\Command\ValidateLessonImportCommand' => array('arguments' => array('$projectDir' => '%kernel.project_dir%')), 'App\Service\CryptoService' => array('arguments' => array('$appSecret' => '%env(APP_SECRET)%')), 'App\Service\GDPRService' => array('arguments' => array('$em' => '@doctrine.orm.entity_manager', '$security' => '@security.helper')))), '/www/htdocs/w0195fef/projects/sb/config/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:180)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->loadContent(array('parameters' => null, 'services' => array('_defaults' => array('autowire' => true, 'autoconfigure' => true), 'App\' => array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Controller/_dup_backup/', '../src/Controller/_legacy/')), 'App\Command\ValidateLessonImportCommand' => array('arguments' => array('$projectDir' => '%kernel.project_dir%')), 'App\Service\CryptoService' => array('arguments' => array('$appSecret' => '%env(APP_SECRET)%')), 'App\Service\GDPRService' => array('arguments' => array('$em' => '@doctrine.orm.entity_manager', '$security' => '@security.helper')))), '/www/htdocs/w0195fef/projects/sb/config/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:138)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->load('/www/htdocs/w0195fef/projects/sb/config/services.yaml', null)
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/FileLoader.php:162)
  at Symfony\Component\Config\Loader\FileLoader->doImport('/www/htdocs/w0195fef/projects/sb/config/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/FileLoader.php:82)
  at Symfony\Component\Config\Loader\FileLoader->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/FileLoader.php:78)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml', null, false, '/www/htdocs/w0195fef/projects/sb/src/Kernel.php')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php:67)
  at Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator->import('/www/htdocs/w0195fef/projects/sb/{config}/services.yaml')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:58)
  at App\Kernel->configureContainer(object(ContainerConfigurator), object(DelegatingLoader), object(ContainerBuilder))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:208)
  at App\Kernel->{closure:Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait::registerContainerConfiguration():164}(object(ContainerBuilder), 'prod')
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/dependency-injection/Loader/ClosureLoader.php:35)
  at Symfony\Component\DependencyInjection\Loader\ClosureLoader->load(object(Closure), null)
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/config/Loader/DelegatingLoader.php:37)
  at Symfony\Component\Config\Loader\DelegatingLoader->load(object(Closure))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:164)
  at App\Kernel->registerContainerConfiguration(object(DelegatingLoader))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:600)
  at Symfony\Component\HttpKernel\Kernel->buildContainer()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:487)
  at Symfony\Component\HttpKernel\Kernel->initializeContainer()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:732)
  at Symfony\Component\HttpKernel\Kernel->preBoot()
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/http-kernel/Kernel.php:170)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/www/htdocs/w0195fef/projects/sb/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php:32)
  at require_once('/www/htdocs/w0195fef/projects/sb/vendor/autoload_runtime.php')
     (/www/htdocs/w0195fef/projects/sb/public/index.php:5)