{# #} {# #}

{{ user.name }}

{{ user.title }}

{{ user.organization }}

{{ user.reference }}

Badge - {{ user.reference }} {# #} {# #}

{{ user.name }}

{{ user.title }}

{{ user.organization }}

{{ user.reference }}

Expected to find class "App\Controller\AccountController" in file "/home/actechskilsknsin/public_html/src/Controller/AccountController.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /home/actechskilsknsin/public_html/config/services.yaml (which is being imported from "/home/actechskilsknsin/public_html/src/Kernel.php"). (500 Internal Server Error)

Symfony Exception

InvalidArgumentException LoaderLoadException

HTTP 500 Internal Server Error

Expected to find class "App\Controller\AccountController" in file "/home/actechskilsknsin/public_html/src/Controller/AccountController.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /home/actechskilsknsin/public_html/config/services.yaml (which is being imported from "/home/actechskilsknsin/public_html/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$sourceResource0$e$type);
  6.             }
  7.         }
  8.         return null;
  9.     }
  1.             if ($isSubpath) {
  2.                 return isset($ret[1]) ? $ret : ($ret[0] ?? null);
  3.             }
  4.         }
  5.         return $this->doImport($resource$type$ignoreErrors$sourceResource);
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         } elseif (!\is_bool($ignoreErrors)) {
  2.             throw new \TypeError(sprintf('Invalid argument $ignoreErrors provided to "%s::import()": boolean or "not_found" expected, "%s" given.', static::class, get_debug_type($ignoreErrors)));
  3.         }
  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 $resourcestring $type nullbool|string $ignoreErrors false)
  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}/*.yaml');
  2.         $container->import($configDir.'/{packages}/'.$this->environment.'/*.yaml');
  3.         if (is_file($configDir.'/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.         }
  9.     }
  1.             AbstractConfigurator::$valuePreProcessor = function ($value) {
  2.                 return $this === $value ? new Reference('kernel') : $value;
  3.             };
  4.             try {
  5.                 $configureContainer->getClosure($this)(new ContainerConfigurator($container$kernelLoader$instanceof$file$file$this->getEnvironment()), $loader$container);
  6.             } finally {
  7.                 $instanceof = [];
  8.                 $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  9.                 AbstractConfigurator::$valuePreProcessor $valuePreProcessor;
  10.             }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function load(mixed $resourcestring $type null): mixed
  5.     {
  6.         return $resource($this->container$this->env);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     {
  2.         if (false === $loader $this->resolver->resolve($resource$type)) {
  3.             throw new LoaderLoadException($resourcenull0null$type);
  4.         }
  5.         return $loader->load($resource$type);
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  9.      */
  1.                 $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  2.                 AbstractConfigurator::$valuePreProcessor $valuePreProcessor;
  3.             }
  4.             $container->setAlias($kernelClass'kernel')->setPublic(true);
  5.         });
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         }
  2.         $container $this->getContainerBuilder();
  3.         $container->addObjectResource($this);
  4.         $this->prepareContainer($container);
  5.         $this->registerContainerConfiguration($this->getContainerLoader($container));
  6.         $container->addCompilerPass(new AddAnnotatedClassesToCachePass($this));
  7.         return $container;
  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($trustedHosts);
  1.      * {@inheritdoc}
  2.      */
  3.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  4.     {
  5.         if (!$this->booted) {
  6.             $container $this->container ?? $this->preBoot();
  7.             if ($container->has('http_cache')) {
  8.                 return $container->get('http_cache')->handle($request$type$catch);
  9.             }
  10.         }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/actechskilsknsin/public_html/vendor/autoload_runtime.php') in /home/actechskilsknsin/public_html/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\Controller\AccountController" in file "/home/actechskilsknsin/public_html/src/Controller/AccountController.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->isInstantiable() || $r->isInterface()) {
  9.                 $classes[$class] = null;
  10.             }
  1.             throw new InvalidArgumentException(sprintf('Namespace is not a valid PSR-4 prefix: "%s".'$namespace));
  2.         }
  3.         $autoconfigureAttributes = new RegisterAutoconfigureAttributesPass();
  4.         $autoconfigureAttributes $autoconfigureAttributes->accept($prototype) ? $autoconfigureAttributes null;
  5.         $classes $this->findClasses($namespace$resource, (array) $exclude$autoconfigureAttributes);
  6.         // prepare for deep cloning
  7.         $serializedPrototype serialize($prototype);
  8.         foreach ($classes as $class => $errorMessage) {
  9.             if (null === $errorMessage && $autoconfigureAttributes && $this->env) {
  1.             if (!\is_string($service['resource'])) {
  2.                 throw new InvalidArgumentException(sprintf('A "resource" attribute must be of type string for service "%s" in "%s". Check your YAML syntax.'$id$file));
  3.             }
  4.             $exclude $service['exclude'] ?? null;
  5.             $namespace $service['namespace'] ?? $id;
  6.             $this->registerClasses($definition$namespace$service['resource'], $exclude);
  7.         } else {
  8.             $this->setDefinition($id$definition);
  9.         }
  10.     }
  1.         }
  2.         $this->isLoadingInstanceof false;
  3.         $defaults $this->parseDefaults($content$file);
  4.         foreach ($content['services'] as $id => $service) {
  5.             $this->parseDefinition($id$service$file$defaultsfalse$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.         // empty file
  2.         if (null === $content) {
  3.             return null;
  4.         }
  5.         $this->loadContent($content$path);
  6.         // per-env configuration
  7.         if ($this->env && isset($content['when@'.$this->env])) {
  8.             if (!\is_array($content['when@'.$this->env])) {
  9.                 throw new InvalidArgumentException(sprintf('The "when@%s" key should contain an array in "%s". Check your YAML syntax.'$this->env$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.             if ($isSubpath) {
  2.                 return isset($ret[1]) ? $ret : ($ret[0] ?? null);
  3.             }
  4.         }
  5.         return $this->doImport($resource$type$ignoreErrors$sourceResource);
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         } elseif (!\is_bool($ignoreErrors)) {
  2.             throw new \TypeError(sprintf('Invalid argument $ignoreErrors provided to "%s::import()": boolean or "not_found" expected, "%s" given.', static::class, get_debug_type($ignoreErrors)));
  3.         }
  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 $resourcestring $type nullbool|string $ignoreErrors false)
  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}/*.yaml');
  2.         $container->import($configDir.'/{packages}/'.$this->environment.'/*.yaml');
  3.         if (is_file($configDir.'/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.         }
  9.     }
  1.             AbstractConfigurator::$valuePreProcessor = function ($value) {
  2.                 return $this === $value ? new Reference('kernel') : $value;
  3.             };
  4.             try {
  5.                 $configureContainer->getClosure($this)(new ContainerConfigurator($container$kernelLoader$instanceof$file$file$this->getEnvironment()), $loader$container);
  6.             } finally {
  7.                 $instanceof = [];
  8.                 $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  9.                 AbstractConfigurator::$valuePreProcessor $valuePreProcessor;
  10.             }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function load(mixed $resourcestring $type null): mixed
  5.     {
  6.         return $resource($this->container$this->env);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     {
  2.         if (false === $loader $this->resolver->resolve($resource$type)) {
  3.             throw new LoaderLoadException($resourcenull0null$type);
  4.         }
  5.         return $loader->load($resource$type);
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  9.      */
  1.                 $kernelLoader->registerAliasesForSinglyImplementedInterfaces();
  2.                 AbstractConfigurator::$valuePreProcessor $valuePreProcessor;
  3.             }
  4.             $container->setAlias($kernelClass'kernel')->setPublic(true);
  5.         });
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         }
  2.         $container $this->getContainerBuilder();
  3.         $container->addObjectResource($this);
  4.         $this->prepareContainer($container);
  5.         $this->registerContainerConfiguration($this->getContainerLoader($container));
  6.         $container->addCompilerPass(new AddAnnotatedClassesToCachePass($this));
  7.         return $container;
  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($trustedHosts);
  1.      * {@inheritdoc}
  2.      */
  3.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true): Response
  4.     {
  5.         if (!$this->booted) {
  6.             $container $this->container ?? $this->preBoot();
  7.             if ($container->has('http_cache')) {
  8.                 return $container->get('http_cache')->handle($request$type$catch);
  9.             }
  10.         }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/actechskilsknsin/public_html/vendor/autoload_runtime.php') in /home/actechskilsknsin/public_html/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\Controller\AccountController" in file "/home/actechskilsknsin/public_html/src/Controller/AccountController.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource in /home/actechskilsknsin/public_html/config/services.yaml (which is being imported from "/home/actechskilsknsin/public_html/src/Kernel.php").

  at /home/actechskilsknsin/public_html/vendor/symfony/config/Loader/FileLoader.php:172
  at Symfony\Component\Config\Loader\FileLoader->doImport('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/config/Loader/FileLoader.php:96)
  at Symfony\Component\Config\Loader\FileLoader->import('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/FileLoader.php:66)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->import('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php:64)
  at Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator->import('/home/actechskilsknsin/public_html/config/services.yaml')
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:57)
  at App\Kernel->configureContainer(object(ContainerConfigurator), object(DelegatingLoader), object(ContainerBuilder))
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:187)
  at App\Kernel->Symfony\Bundle\FrameworkBundle\Kernel\{closure}(object(ContainerBuilder), 'dev')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/ClosureLoader.php:39)
  at Symfony\Component\DependencyInjection\Loader\ClosureLoader->load(object(Closure), null)
     (/home/actechskilsknsin/public_html/vendor/symfony/config/Loader/DelegatingLoader.php:40)
  at Symfony\Component\Config\Loader\DelegatingLoader->load(object(Closure))
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:195)
  at App\Kernel->registerContainerConfiguration(object(DelegatingLoader))
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:636)
  at Symfony\Component\HttpKernel\Kernel->buildContainer()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:537)
  at Symfony\Component\HttpKernel\Kernel->initializeContainer()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:767)
  at Symfony\Component\HttpKernel\Kernel->preBoot()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/actechskilsknsin/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/home/actechskilsknsin/public_html/vendor/autoload_runtime.php:29)
  at require_once('/home/actechskilsknsin/public_html/vendor/autoload_runtime.php')
     (/home/actechskilsknsin/public_html/public/index.php:5)                
[1/2] InvalidArgumentException
Symfony\Component\DependencyInjection\Exception\InvalidArgumentException:
Expected to find class "App\Controller\AccountController" in file "/home/actechskilsknsin/public_html/src/Controller/AccountController.php" while importing services from resource "../src/", but it was not found! Check the namespace prefix used with the resource.

  at /home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/FileLoader.php:224
  at Symfony\Component\DependencyInjection\Loader\FileLoader->findClasses('App\\', '../src/', array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Tests/'), object(RegisterAutoconfigureAttributesPass))
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/FileLoader.php:105)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->registerClasses(object(Definition), 'App\\', '../src/', array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Tests/'))
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:695)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinition('App\\', array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Tests/')), '/home/actechskilsknsin/public_html/config/services.yaml', array('autowire' => true, 'autoconfigure' => true, 'bind' => array('string $locales' => object(BoundArgument), 'string $defaultLocale' => object(BoundArgument), 'string $emailSender' => object(BoundArgument))), false, true)
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:256)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->parseDefinitions(array('parameters' => array('locale' => 'en', 'app_locales' => 'fr|en', 'app.notifications.email_sender' => 'anonymous@example.com'), 'services' => array('App\' => array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Tests/')), 'App\EventSubscriber\CommentNotificationSubscriber' => array('$sender' => '%app.notifications.email_sender%'), 'Symfony\Component\HttpFoundation\Session\Storage\Handler\RedisSessionHandler' => array('arguments' => array('@Redis', array('ttl' => 6000)))), 'when@test' => array('services' => array('test.user_password_hasher' => array('alias' => 'security.user_password_hasher', 'public' => true))), 'knp_paginator' => array('page_range' => 5, 'default_options' => array('page_name' => 'page', 'sort_field_name' => 'sort', 'sort_direction_name' => 'direction', 'distinct' => true, 'filter_field_name' => 'filterField', 'filter_value_name' => 'filterValue'), 'template' => array('pagination' => '@KnpPaginator/Pagination/sliding.html.twig', 'sortable' => '@KnpPaginator/Pagination/sortable_link.html.twig', 'filtration' => '@KnpPaginator/Pagination/filtration.html.twig'))), '/home/actechskilsknsin/public_html/config/services.yaml')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:176)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->loadContent(array('parameters' => array('locale' => 'en', 'app_locales' => 'fr|en', 'app.notifications.email_sender' => 'anonymous@example.com'), 'services' => array('_defaults' => array('autowire' => true, 'autoconfigure' => true, 'bind' => array('string $locales' => '%app_locales%', 'string $defaultLocale' => '%locale%', 'string $emailSender' => '%app.notifications.email_sender%')), 'App\' => array('resource' => '../src/', 'exclude' => array('../src/DependencyInjection/', '../src/Entity/', '../src/Kernel.php', '../src/Tests/')), 'App\EventSubscriber\CommentNotificationSubscriber' => array('$sender' => '%app.notifications.email_sender%'), 'Symfony\Component\HttpFoundation\Session\Storage\Handler\RedisSessionHandler' => array('arguments' => array('@Redis', array('ttl' => 6000)))), 'when@test' => array('services' => array('test.user_password_hasher' => array('alias' => 'security.user_password_hasher', 'public' => true))), 'knp_paginator' => array('page_range' => 5, 'default_options' => array('page_name' => 'page', 'sort_field_name' => 'sort', 'sort_direction_name' => 'direction', 'distinct' => true, 'filter_field_name' => 'filterField', 'filter_value_name' => 'filterValue'), 'template' => array('pagination' => '@KnpPaginator/Pagination/sliding.html.twig', 'sortable' => '@KnpPaginator/Pagination/sortable_link.html.twig', 'filtration' => '@KnpPaginator/Pagination/filtration.html.twig'))), '/home/actechskilsknsin/public_html/config/services.yaml')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/YamlFileLoader.php:132)
  at Symfony\Component\DependencyInjection\Loader\YamlFileLoader->load('/home/actechskilsknsin/public_html/config/services.yaml', null)
     (/home/actechskilsknsin/public_html/vendor/symfony/config/Loader/FileLoader.php:157)
  at Symfony\Component\Config\Loader\FileLoader->doImport('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/config/Loader/FileLoader.php:96)
  at Symfony\Component\Config\Loader\FileLoader->import('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/FileLoader.php:66)
  at Symfony\Component\DependencyInjection\Loader\FileLoader->import('/home/actechskilsknsin/public_html/config/services.yaml', null, false, '/home/actechskilsknsin/public_html/src/Kernel.php')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php:64)
  at Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator->import('/home/actechskilsknsin/public_html/config/services.yaml')
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:57)
  at App\Kernel->configureContainer(object(ContainerConfigurator), object(DelegatingLoader), object(ContainerBuilder))
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:187)
  at App\Kernel->Symfony\Bundle\FrameworkBundle\Kernel\{closure}(object(ContainerBuilder), 'dev')
     (/home/actechskilsknsin/public_html/vendor/symfony/dependency-injection/Loader/ClosureLoader.php:39)
  at Symfony\Component\DependencyInjection\Loader\ClosureLoader->load(object(Closure), null)
     (/home/actechskilsknsin/public_html/vendor/symfony/config/Loader/DelegatingLoader.php:40)
  at Symfony\Component\Config\Loader\DelegatingLoader->load(object(Closure))
     (/home/actechskilsknsin/public_html/vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:195)
  at App\Kernel->registerContainerConfiguration(object(DelegatingLoader))
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:636)
  at Symfony\Component\HttpKernel\Kernel->buildContainer()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:537)
  at Symfony\Component\HttpKernel\Kernel->initializeContainer()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:767)
  at Symfony\Component\HttpKernel\Kernel->preBoot()
     (/home/actechskilsknsin/public_html/vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/actechskilsknsin/public_html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/home/actechskilsknsin/public_html/vendor/autoload_runtime.php:29)
  at require_once('/home/actechskilsknsin/public_html/vendor/autoload_runtime.php')
     (/home/actechskilsknsin/public_html/public/index.php:5)