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