Whoops, looks like something went wrong.

(1/1) Symfony\Component\DependencyInjection\Exception\InvalidArgumentException

Expected to find class "Bfw\Bfwtermine\Controller\TermineController" in file "/pages/20/3c/d0007380/home/htdocs/typo3cms11/typo3conf/ext/bfwtermine/Classes/Controller/TermineController.php" while importing services from resource "../Classes/*", but it was not found! Check the namespace prefix used with the resource.

in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/FileLoader.php line 224
                continue;
            }
            // check to make sure the expected class exists
            if (!$r) {
                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));
            }

            if ($r->isInstantiable() || $r->isInterface()) {
                $classes[$class] = null;
at Symfony\Component\DependencyInjection\Loader\FileLoader->findClasses('Bfw\\Bfwtermine\\', '../Classes/*', array('../Classes/Domain/Model/*'), object(Symfony\Component\DependencyInjection\Compiler\RegisterAutoconfigureAttributesPass))
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/FileLoader.php line 105
        }

        $autoconfigureAttributes = new RegisterAutoconfigureAttributesPass();
        $autoconfigureAttributes = $autoconfigureAttributes->accept($prototype) ? $autoconfigureAttributes : null;
        $classes = $this->findClasses($namespace, $resource, (array) $exclude, $autoconfigureAttributes);
        // prepare for deep cloning
        $serializedPrototype = serialize($prototype);

        foreach ($classes as $class => $errorMessage) {
at Symfony\Component\DependencyInjection\Loader\FileLoader->registerClasses(object(Symfony\Component\DependencyInjection\Definition), 'Bfw\\Bfwtermine\\', '../Classes/*', array('../Classes/Domain/Model/*'))
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php line 699
                throw new InvalidArgumentException(sprintf('A "resource" attribute must be of type string for service "%s" in "%s". Check your YAML syntax.', $id, $file));
            }
            $exclude = $service['exclude'] ?? null;
            $namespace = $service['namespace'] ?? $id;
            $this->registerClasses($definition, $namespace, $service['resource'], $exclude);
        } else {
            $this->setDefinition($id, $definition);
        }
    }
at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinition('Bfw\\Bfwtermine\\', array('resource' => '../Classes/*', 'exclude' => array('../Classes/Domain/Model/*')), '/pages/20/3c/d0007380/home/htdocs/typo3cms11/typo3conf/ext/bfwtermine/Configuration//Services.yaml', array('autowire' => true, 'autoconfigure' => true, 'public' => false), false, true)
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php line 256

        $this->isLoadingInstanceof = false;
        $defaults = $this->parseDefaults($content, $file);
        foreach ($content['services'] as $id => $service) {
            $this->parseDefinition($id, $service, $file, $defaults, false, $trackBindings);
        }
    }

    /**
at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinitions(array('services' => array('Bfw\Bfwtermine\' => array('resource' => '../Classes/*', 'exclude' => array('../Classes/Domain/Model/*')))), '/pages/20/3c/d0007380/home/htdocs/typo3cms11/typo3conf/ext/bfwtermine/Configuration//Services.yaml')
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php line 176
        $this->anonymousServicesCount = 0;
        $this->anonymousServicesSuffix = '~'.ContainerBuilder::hash($path);
        $this->setCurrentDir(\dirname($path));
        try {
            $this->parseDefinitions($content, $path);
        } finally {
            $this->instanceof = [];
            $this->registerAliasesForSinglyImplementedInterfaces();
        }
at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->loadContent(array('services' => array('_defaults' => array('autowire' => true, 'autoconfigure' => true, 'public' => false), 'Bfw\Bfwtermine\' => array('resource' => '../Classes/*', 'exclude' => array('../Classes/Domain/Model/*')))), '/pages/20/3c/d0007380/home/htdocs/typo3cms11/typo3conf/ext/bfwtermine/Configuration//Services.yaml')
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php line 132
        if (null === $content) {
            return null;
        }

        $this->loadContent($content, $path);

        // per-env configuration
        if ($this->env && isset($content['when@'.$this->env])) {
            if (!\is_array($content['when@'.$this->env])) {
at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->load('Services.yaml')
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/typo3/sysext/core/Classes/DependencyInjection/ContainerBuilder.php line 129
                $phpFileLoader->load('Services.php');
            }
            if (file_exists($diConfigDir . 'Services.yaml')) {
                $yamlFileLoader = new YamlFileLoader($containerBuilder, new FileLocator($diConfigDir));
                $yamlFileLoader->load('Services.yaml');
            }
        }
        // Store defaults entries in the DIC container
        // We need to use a workaround using aliases for synthetic services
at TYPO3\CMS\Core\DependencyInjection\ContainerBuilder->buildContainer(object(TYPO3\CMS\Core\Package\PackageManager), object(TYPO3\CMS\Core\DependencyInjection\ServiceProviderRegistry))
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/typo3/sysext/core/Classes/DependencyInjection/ContainerBuilder.php line 94
        $containerClassName = $cacheIdentifier;

        $hasCache = $cache->requireOnce($cacheIdentifier) !== false;
        if (!$hasCache) {
            $containerBuilder = $this->buildContainer($packageManager, $serviceProviderRegistry);
            $this->dumpContainer($containerBuilder, $cache, $cacheIdentifier);
            $cache->requireOnce($cacheIdentifier);
        }
        $container = new $containerClassName();
at TYPO3\CMS\Core\DependencyInjection\ContainerBuilder->createDependencyInjectionContainer(object(TYPO3\CMS\Core\Package\PackageManager), object(TYPO3\CMS\Core\Cache\Frontend\PhpFrontend), false)
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/typo3/sysext/core/Classes/Core/Bootstrap.php line 142
            // @internal
            'boot.state' => $bootState,
        ]);

        $container = $builder->createDependencyInjectionContainer($packageManager, $dependencyInjectionContainerCache, $failsafe);

        // Push the container to GeneralUtility as we want to make sure its
        // makeInstance() method creates classes using the container from now on.
        GeneralUtility::setContainer($container);
at TYPO3\CMS\Core\Core\Bootstrap::init(object(Composer\Autoload\ClassLoader))
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /pages/20/3c/d0007380/home/typo3_src-11.5.36/index.php line 21
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});