https://racket-trip.eu/apple-touch-icon.png

Exceptions

Couldn't read the indices [LocalizedNames][pt] for the locale "apple-touch-icon.png" in "/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages". The indices also couldn't be found for the fallback locale(s) "apple_TOUCH", "apple".

Exceptions 2

Symfony\Component\Intl\Exception\ MissingResourceException

  1.                 ' The indices also couldn\'t be found for the fallback locale(s) "%s".',
  2.                 implode('", "'$testedLocales)
  3.             );
  4.         }
  5.         throw new MissingResourceException($errorMessage0$exception);
  6.     }
  7. }
  1.             $localeAliases self::$entryReader->readEntry(Intl::getDataDirectory().'/'.Intl::LOCALE_DIR'meta', ['Aliases']);
  2.             self::$entryReader->setLocaleAliases($localeAliases instanceof \Traversable iterator_to_array($localeAliases) : $localeAliases);
  3.         }
  4.         return self::$entryReader->readEntry(static::getPath(), $locale ?? \Locale::getDefault(), $indices$fallback);
  5.     }
  6.     final protected static function asort(iterable $list, ?string $locale null): array
  7.     {
  8.         if ($list instanceof \Traversable) {
in vendor/symfony/intl/Languages.php :: readEntry (line 65)
  1.     {
  2.         try {
  3.             return self::readEntry(['Names'$language], $displayLocale);
  4.         } catch (MissingResourceException $e) {
  5.             try {
  6.                 return self::readEntry(['LocalizedNames'$language], $displayLocale);
  7.             } catch (MissingResourceException $e) {
  8.                 if (false !== $i strrpos($language'_')) {
  9.                     return self::getName(substr($language0$i), $displayLocale);
  10.                 }
Languages::getName('pt', 'apple-touch-icon.png') in src/Form/SearchCourseType.php (line 92)
  1.             ->add('languages'EntityType::class, [
  2.                 'class' => Language::class,
  3.                 'choice_label' => function ($language) {
  4.                         
  5.                     $locale $this->request->getLocale();
  6.                     return ucfirst(Languages::getName($language->getSlug(), $locale));
  7.                         
  8.                 },
  9.                 'expanded' => true,
  10.                 'multiple' => true,
  11.                 'required' => false,
  1.             // If the labels are null, use the original choice key by default
  2.             $label = (string) $key;
  3.         } elseif (false !== $label) {
  4.             // If "choice_label" is set to false and "expanded" is true, the value false
  5.             // should be passed on to the "label" option of the checkboxes/radio buttons
  6.             $dynamicLabel $label($choice$key$value);
  7.             if (false === $dynamicLabel) {
  8.                 $label false;
  9.             } elseif ($dynamicLabel instanceof TranslatableMessage) {
  10.                 $label $dynamicLabel;
  1.                 $attr,
  2.                 $labelTranslationParameters,
  3.                 $isPreferred,
  4.                 $preferredViews,
  5.                 $preferredViewsOrder,
  6.                 $otherViews
  7.             );
  8.         }
  9.     }
  10.     private static function addChoiceViewsGroupedByCallable(callable $groupBy$choicestring $value$label, array $keys, &$index$attr$labelTranslationParameters, ?callable $isPreferred, array &$preferredViews, array &$preferredViewsOrder, array &$otherViews)
in vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php :: addChoiceViewsFromStructuredValues (line 148)
  1.                 }
  2.             }
  3.         } else {
  4.             // Otherwise use the original structure of the choices
  5.             self::addChoiceViewsFromStructuredValues(
  6.                 $list->getStructuredValues(),
  7.                 $label,
  8.                 $choices,
  9.                 $keys,
  10.                 $index,
  11.                 $attr,
  1.                 return $accessor->getValue($choice$labelTranslationParameters);
  2.             };
  3.         }
  4.         return $this->decoratedFactory->createView(
  5.             $list,
  6.             $preferredChoices,
  7.             $label,
  8.             $index,
  9.             $groupBy,
  10.             $attr,
  1.             $cache false;
  2.         }
  3.         if (!$cache) {
  4.             return $this->decoratedFactory->createView(
  5.                 $list,
  6.                 $preferredChoices,
  7.                 $label,
  8.                 $index,
  9.                 $groupBy,
  10.                 $attr,
  1.             $options['preferred_choices'],
  2.             $options['choice_label'],
  3.             $options['choice_name'],
  4.             $options['group_by'],
  5.             $options['choice_attr'],
  6.             $options['choice_translation_parameters']
  7.         );
  8.     }
  9. }
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 102)
  1.             // initialized choice lists. For example, when using an SQL driver,
  2.             // the index check would read in one SQL query and the initialization
  3.             // requires another SQL query. When the initialization is done first,
  4.             // one SQL query is sufficient.
  5.             $choiceListView $this->createChoiceListView($choiceList$options);
  6.             $builder->setAttribute('choice_list_view'$choiceListView);
  7.             // Check if the choices already contain the empty value
  8.             // Only add the placeholder option if this is not the case
  9.             if (null !== $options['placeholder'] && === \count($choiceList->getChoicesForValues(['']))) {
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildForm($builder$options);
  4.         }
  5.         $this->innerType->buildForm($builder$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildForm($builder$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildForm(FormBuilderInterface $builder, array $options)
  5.     {
  6.         $this->proxiedType->buildForm($builder$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildForm(FormBuilderInterface $builder, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildForm($builder$options);
  7.         }
  8.         $this->innerType->buildForm($builder$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildForm(FormBuilderInterface $builder, array $options)
  5.     {
  6.         $this->proxiedType->buildForm($builder$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/FormFactory.php -> buildForm (line 73)
  1.         $builder $type->createBuilder($this$name$options);
  2.         // Explicitly call buildForm() in order to be able to override either
  3.         // createBuilder() or buildForm() in the resolved form type
  4.         $type->buildForm($builder$builder->getOptions());
  5.         return $builder;
  6.     }
  7.     /**
in vendor/symfony/form/FormBuilder.php -> createNamedBuilder (line 97)
  1.         if (null === $type && null === $this->getDataClass()) {
  2.             $type TextType::class;
  3.         }
  4.         if (null !== $type) {
  5.             return $this->getFormFactory()->createNamedBuilder($name$typenull$options);
  6.         }
  7.         return $this->getFormFactory()->createBuilderForProperty($this->getDataClass(), $namenull$options);
  8.     }
  1.      * Converts all unresolved children into {@link FormBuilder} instances.
  2.      */
  3.     private function resolveChildren()
  4.     {
  5.         foreach ($this->unresolvedChildren as $name => $info) {
  6.             $this->children[$name] = $this->create($name$info[0], $info[1]);
  7.         }
  8.         $this->unresolvedChildren = [];
  9.     }
  10. }
in vendor/symfony/form/FormBuilder.php -> resolveChildren (line 199)
  1.     {
  2.         if ($this->locked) {
  3.             throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.');
  4.         }
  5.         $this->resolveChildren();
  6.         $form = new Form($this->getFormConfig());
  7.         foreach ($this->children as $child) {
  8.             // Automatic initialization is only supported on root forms
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function create(string $type FormType::class, $data null, array $options = [])
  5.     {
  6.         return $this->createBuilder($type$data$options)->getForm();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * Creates and returns a Form instance from the type of the form.
  3.      */
  4.     protected function createForm(string $type$data null, array $options = []): FormInterface
  5.     {
  6.         return $this->container->get('form.factory')->create($type$data$options);
  7.     }
  8.     /**
  9.      * Creates and returns a form builder instance.
  10.      */
AbstractController->createForm('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET')) in src/Controller/Front/HomepageController.php (line 121)
  1.         // Search form
  2.         $search = new SearchCourse();
  3.         $form $this->createForm(SearchCourseType::class, $search, [
  4.             'action' => $this->generateUrl('courses'),
  5.             'method' => 'GET'
  6.         ]);
  7.         $form->handleRequest($request);
  8.         $articles $articleRepository->getLatestArticles($locale4);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  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.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php') in 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\Intl\Exception\ ResourceBundleNotFoundException

The resource bundle "/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages/apple.php" does not exist.

  1.         if (\dirname($fileName) !== $path) {
  2.             throw new ResourceBundleNotFoundException(sprintf('The resource bundle "%s" does not exist.'$fileName));
  3.         }
  4.         if (!is_file($fileName)) {
  5.             throw new ResourceBundleNotFoundException(sprintf('The resource bundle "%s" does not exist.'$fileName));
  6.         }
  7.         return include $fileName;
  8.     }
  9. }
  1.     public function read(string $pathstring $locale)
  2.     {
  3.         $hash $path.'//'.$locale;
  4.         if (!isset($this->buffer[$hash])) {
  5.             $this->buffer[$hash] = $this->reader->read($path$locale);
  6.         }
  7.         return $this->buffer[$hash];
  8.     }
  9. }
  1.             if (isset($this->localeAliases[$currentLocale])) {
  2.                 $currentLocale $this->localeAliases[$currentLocale];
  3.             }
  4.             try {
  5.                 $data $this->reader->read($path$currentLocale);
  6.                 $currentEntry RecursiveArrayAccess::get($data$indices);
  7.                 $readSucceeded true;
  8.                 $isCurrentTraversable $currentEntry instanceof \Traversable;
  9.                 $isCurrentMultiValued $isCurrentTraversable || \is_array($currentEntry);
  1.             $localeAliases self::$entryReader->readEntry(Intl::getDataDirectory().'/'.Intl::LOCALE_DIR'meta', ['Aliases']);
  2.             self::$entryReader->setLocaleAliases($localeAliases instanceof \Traversable iterator_to_array($localeAliases) : $localeAliases);
  3.         }
  4.         return self::$entryReader->readEntry(static::getPath(), $locale ?? \Locale::getDefault(), $indices$fallback);
  5.     }
  6.     final protected static function asort(iterable $list, ?string $locale null): array
  7.     {
  8.         if ($list instanceof \Traversable) {
in vendor/symfony/intl/Languages.php :: readEntry (line 65)
  1.     {
  2.         try {
  3.             return self::readEntry(['Names'$language], $displayLocale);
  4.         } catch (MissingResourceException $e) {
  5.             try {
  6.                 return self::readEntry(['LocalizedNames'$language], $displayLocale);
  7.             } catch (MissingResourceException $e) {
  8.                 if (false !== $i strrpos($language'_')) {
  9.                     return self::getName(substr($language0$i), $displayLocale);
  10.                 }
Languages::getName('pt', 'apple-touch-icon.png') in src/Form/SearchCourseType.php (line 92)
  1.             ->add('languages'EntityType::class, [
  2.                 'class' => Language::class,
  3.                 'choice_label' => function ($language) {
  4.                         
  5.                     $locale $this->request->getLocale();
  6.                     return ucfirst(Languages::getName($language->getSlug(), $locale));
  7.                         
  8.                 },
  9.                 'expanded' => true,
  10.                 'multiple' => true,
  11.                 'required' => false,
  1.             // If the labels are null, use the original choice key by default
  2.             $label = (string) $key;
  3.         } elseif (false !== $label) {
  4.             // If "choice_label" is set to false and "expanded" is true, the value false
  5.             // should be passed on to the "label" option of the checkboxes/radio buttons
  6.             $dynamicLabel $label($choice$key$value);
  7.             if (false === $dynamicLabel) {
  8.                 $label false;
  9.             } elseif ($dynamicLabel instanceof TranslatableMessage) {
  10.                 $label $dynamicLabel;
  1.                 $attr,
  2.                 $labelTranslationParameters,
  3.                 $isPreferred,
  4.                 $preferredViews,
  5.                 $preferredViewsOrder,
  6.                 $otherViews
  7.             );
  8.         }
  9.     }
  10.     private static function addChoiceViewsGroupedByCallable(callable $groupBy$choicestring $value$label, array $keys, &$index$attr$labelTranslationParameters, ?callable $isPreferred, array &$preferredViews, array &$preferredViewsOrder, array &$otherViews)
in vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php :: addChoiceViewsFromStructuredValues (line 148)
  1.                 }
  2.             }
  3.         } else {
  4.             // Otherwise use the original structure of the choices
  5.             self::addChoiceViewsFromStructuredValues(
  6.                 $list->getStructuredValues(),
  7.                 $label,
  8.                 $choices,
  9.                 $keys,
  10.                 $index,
  11.                 $attr,
  1.                 return $accessor->getValue($choice$labelTranslationParameters);
  2.             };
  3.         }
  4.         return $this->decoratedFactory->createView(
  5.             $list,
  6.             $preferredChoices,
  7.             $label,
  8.             $index,
  9.             $groupBy,
  10.             $attr,
  1.             $cache false;
  2.         }
  3.         if (!$cache) {
  4.             return $this->decoratedFactory->createView(
  5.                 $list,
  6.                 $preferredChoices,
  7.                 $label,
  8.                 $index,
  9.                 $groupBy,
  10.                 $attr,
  1.             $options['preferred_choices'],
  2.             $options['choice_label'],
  3.             $options['choice_name'],
  4.             $options['group_by'],
  5.             $options['choice_attr'],
  6.             $options['choice_translation_parameters']
  7.         );
  8.     }
  9. }
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 102)
  1.             // initialized choice lists. For example, when using an SQL driver,
  2.             // the index check would read in one SQL query and the initialization
  3.             // requires another SQL query. When the initialization is done first,
  4.             // one SQL query is sufficient.
  5.             $choiceListView $this->createChoiceListView($choiceList$options);
  6.             $builder->setAttribute('choice_list_view'$choiceListView);
  7.             // Check if the choices already contain the empty value
  8.             // Only add the placeholder option if this is not the case
  9.             if (null !== $options['placeholder'] && === \count($choiceList->getChoicesForValues(['']))) {
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildForm($builder$options);
  4.         }
  5.         $this->innerType->buildForm($builder$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildForm($builder$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildForm(FormBuilderInterface $builder, array $options)
  5.     {
  6.         $this->proxiedType->buildForm($builder$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildForm(FormBuilderInterface $builder, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildForm($builder$options);
  7.         }
  8.         $this->innerType->buildForm($builder$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildForm(FormBuilderInterface $builder, array $options)
  5.     {
  6.         $this->proxiedType->buildForm($builder$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/FormFactory.php -> buildForm (line 73)
  1.         $builder $type->createBuilder($this$name$options);
  2.         // Explicitly call buildForm() in order to be able to override either
  3.         // createBuilder() or buildForm() in the resolved form type
  4.         $type->buildForm($builder$builder->getOptions());
  5.         return $builder;
  6.     }
  7.     /**
in vendor/symfony/form/FormBuilder.php -> createNamedBuilder (line 97)
  1.         if (null === $type && null === $this->getDataClass()) {
  2.             $type TextType::class;
  3.         }
  4.         if (null !== $type) {
  5.             return $this->getFormFactory()->createNamedBuilder($name$typenull$options);
  6.         }
  7.         return $this->getFormFactory()->createBuilderForProperty($this->getDataClass(), $namenull$options);
  8.     }
  1.      * Converts all unresolved children into {@link FormBuilder} instances.
  2.      */
  3.     private function resolveChildren()
  4.     {
  5.         foreach ($this->unresolvedChildren as $name => $info) {
  6.             $this->children[$name] = $this->create($name$info[0], $info[1]);
  7.         }
  8.         $this->unresolvedChildren = [];
  9.     }
  10. }
in vendor/symfony/form/FormBuilder.php -> resolveChildren (line 199)
  1.     {
  2.         if ($this->locked) {
  3.             throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.');
  4.         }
  5.         $this->resolveChildren();
  6.         $form = new Form($this->getFormConfig());
  7.         foreach ($this->children as $child) {
  8.             // Automatic initialization is only supported on root forms
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function create(string $type FormType::class, $data null, array $options = [])
  5.     {
  6.         return $this->createBuilder($type$data$options)->getForm();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * Creates and returns a Form instance from the type of the form.
  3.      */
  4.     protected function createForm(string $type$data null, array $options = []): FormInterface
  5.     {
  6.         return $this->container->get('form.factory')->create($type$data$options);
  7.     }
  8.     /**
  9.      * Creates and returns a form builder instance.
  10.      */
AbstractController->createForm('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET')) in src/Controller/Front/HomepageController.php (line 121)
  1.         // Search form
  2.         $search = new SearchCourse();
  3.         $form $this->createForm(SearchCourseType::class, $search, [
  4.             'action' => $this->generateUrl('courses'),
  5.             'method' => 'GET'
  6.         ]);
  7.         $form->handleRequest($request);
  8.         $articles $articleRepository->getLatestArticles($locale4);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  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.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php') in 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. };

Logs

Level Channel Message
INFO 09:16:46 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://racket-trip.eu/_profiler/latest?panel=exception",
    "method": "GET"
}

Stack Traces 2

[2/2] MissingResourceException
Symfony\Component\Intl\Exception\MissingResourceException:
Couldn't read the indices [LocalizedNames][pt] for the locale "apple-touch-icon.png" in "/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages". The indices also couldn't be found for the fallback locale(s) "apple_TOUCH", "apple".

  at vendor/symfony/intl/Data/Bundle/Reader/BundleEntryReader.php:175
  at Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReader->readEntry('/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages', 'apple-touch-icon.png', array('LocalizedNames', 'pt'), true)
     (vendor/symfony/intl/ResourceBundle.php:58)
  at Symfony\Component\Intl\ResourceBundle::readEntry(array('LocalizedNames', 'pt'), 'apple-touch-icon.png')
     (vendor/symfony/intl/Languages.php:65)
  at Symfony\Component\Intl\Languages::getName('pt', 'apple-touch-icon.png')
     (src/Form/SearchCourseType.php:92)
  at App\Form\SearchCourseType->App\Form\{closure}(object(Language), 0, '1')
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:185)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory::addChoiceView(object(Language), '1', object(Closure), array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, array(), null, array(), array(), array())
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:266)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory::addChoiceViewsFromStructuredValues(array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'), object(Closure), array(object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language)), array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, array(), null, array(), array(), array())
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:148)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), null, object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:230)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:221)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:496)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:102)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:131)
  at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:128)
  at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/FormFactory.php:73)
  at Symfony\Component\Form\FormFactory->createNamedBuilder('languages', object(ResolvedTypeDataCollectorProxy), null, array('class' => 'App\\Entity\\Language', 'choice_label' => object(Closure), 'expanded' => true, 'multiple' => true, 'required' => false, 'label' => false, 'attr' => array('multiple' => true)))
     (vendor/symfony/form/FormBuilder.php:97)
  at Symfony\Component\Form\FormBuilder->create('languages', 'Symfony\\Bridge\\Doctrine\\Form\\Type\\EntityType', array('class' => 'App\\Entity\\Language', 'choice_label' => object(Closure), 'expanded' => true, 'multiple' => true, 'required' => false, 'label' => false, 'attr' => array('multiple' => true)))
     (vendor/symfony/form/FormBuilder.php:249)
  at Symfony\Component\Form\FormBuilder->resolveChildren()
     (vendor/symfony/form/FormBuilder.php:199)
  at Symfony\Component\Form\FormBuilder->getForm()
     (vendor/symfony/form/FormFactory.php:31)
  at Symfony\Component\Form\FormFactory->create('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:366)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createForm('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET'))
     (src/Controller/Front/HomepageController.php:121)
  at App\Controller\Front\HomepageController->index(object(ArticleRepository), object(HomeSliderRepository), object(CourseRepository), object(Request), object(MediaRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceBundleNotFoundException
Symfony\Component\Intl\Exception\ResourceBundleNotFoundException:
The resource bundle "/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages/apple.php" does not exist.

  at vendor/symfony/intl/Data/Bundle/Reader/PhpBundleReader.php:38
  at Symfony\Component\Intl\Data\Bundle\Reader\PhpBundleReader->read('/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages', 'apple')
     (vendor/symfony/intl/Data/Bundle/Reader/BufferedBundleReader.php:46)
  at Symfony\Component\Intl\Data\Bundle\Reader\BufferedBundleReader->read('/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages', 'apple')
     (vendor/symfony/intl/Data/Bundle/Reader/BundleEntryReader.php:88)
  at Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReader->readEntry('/var/www/preprod/racket-trip/vendor/symfony/intl/Resources/data/languages', 'apple-touch-icon.png', array('LocalizedNames', 'pt'), true)
     (vendor/symfony/intl/ResourceBundle.php:58)
  at Symfony\Component\Intl\ResourceBundle::readEntry(array('LocalizedNames', 'pt'), 'apple-touch-icon.png')
     (vendor/symfony/intl/Languages.php:65)
  at Symfony\Component\Intl\Languages::getName('pt', 'apple-touch-icon.png')
     (src/Form/SearchCourseType.php:92)
  at App\Form\SearchCourseType->App\Form\{closure}(object(Language), 0, '1')
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:185)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory::addChoiceView(object(Language), '1', object(Closure), array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, array(), null, array(), array(), array())
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:266)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory::addChoiceViewsFromStructuredValues(array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'), object(Closure), array(object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language), object(Language)), array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, array(), null, array(), array(), array())
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:148)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), null, object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:230)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:221)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), object(Closure), array('Symfony\\Bridge\\Doctrine\\Form\\Type\\DoctrineType', 'createChoiceName'), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:496)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:102)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:131)
  at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:128)
  at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('multiple' => true), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'expanded' => true, 'multiple' => true, 'empty_data' => array(), 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => true, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'legacy_error_messages' => true, 'invalid_message' => 'This value is not valid.', 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Language', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => object(Closure), 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => null, 'choice_translation_domain' => false))
     (vendor/symfony/form/FormFactory.php:73)
  at Symfony\Component\Form\FormFactory->createNamedBuilder('languages', object(ResolvedTypeDataCollectorProxy), null, array('class' => 'App\\Entity\\Language', 'choice_label' => object(Closure), 'expanded' => true, 'multiple' => true, 'required' => false, 'label' => false, 'attr' => array('multiple' => true)))
     (vendor/symfony/form/FormBuilder.php:97)
  at Symfony\Component\Form\FormBuilder->create('languages', 'Symfony\\Bridge\\Doctrine\\Form\\Type\\EntityType', array('class' => 'App\\Entity\\Language', 'choice_label' => object(Closure), 'expanded' => true, 'multiple' => true, 'required' => false, 'label' => false, 'attr' => array('multiple' => true)))
     (vendor/symfony/form/FormBuilder.php:249)
  at Symfony\Component\Form\FormBuilder->resolveChildren()
     (vendor/symfony/form/FormBuilder.php:199)
  at Symfony\Component\Form\FormBuilder->getForm()
     (vendor/symfony/form/FormFactory.php:31)
  at Symfony\Component\Form\FormFactory->create('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:366)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createForm('App\\Form\\SearchCourseType', object(SearchCourse), array('action' => '/apple-touch-icon.png/courses', 'method' => 'GET'))
     (src/Controller/Front/HomepageController.php:121)
  at App\Controller\Front\HomepageController->index(object(ArticleRepository), object(HomeSliderRepository), object(CourseRepository), object(Request), object(MediaRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
     (public/index.php:5)