Exceptions
Exceptions 3
Twig\Error\ RuntimeError
Show exception properties
Twig\Error\RuntimeError {#7208 -lineno: 109 -rawMessage: "An exception has been thrown during the rendering of a template ("The property "App\AssortmentPlan\Entity\AssortmentPlanOffer::$mainMeasurementUnit" is not readable because it is typed "App\Measurement\Entity\MeasurementUnit". You should initialize it or declare a default value instead.")." -source: Twig\Source {#2552 -code: """ {% macro pager(route, total, num) %}\n {% if total != 0 %}\n {% if total <=6 %}\n {% set parts = [range(1, total)] %}\n {% elseif num<=6 or num>=total-5 %}\n {% if num<=6 %}\n {% set parts = [range(1, num+1), range(total-2, total)] %}\n {% elseif num>=total-5 %}\n {% set parts = [range(1, 3), range(num-1, total)] %}\n {% endif %}\n {% else %}\n {% set parts = [range(1, 3), range(num-1, num+1), range(total-2, total)] %}\n {% endif %}\n <nav>\n <ul class="pagination pagination-sm mb-0" style="--bs-pagination-font-size: 0.75rem !important;">\n {% if 1 != num %}\n <li class="page-item">\n <button class="page-link" {{ live_action('changePage', {'page': 1}) }}><<</button>\n </li>\n <li class="page-item">\n <button class="page-link" {{ live_action('changePage', {'page': num-1}) }}><</button>\n </li>\n {% else %}\n <li class="page-item disabled">\n <span class="page-link"><<</span>\n </li>\n <li class="page-item disabled">\n <span class="page-link"><</span>\n </li>\n {% endif %}\n {% for part in parts %}\n {% for page in part %}\n <li class="page-item{% if num==page %} active{% endif %}">\n <button class="page-link"{% if num!=page %} {{ live_action('changePage', {'page': page}) }}{% endif %}>{{ page }}</button>\n </li>\n {% endfor %}\n {% if not loop.last %}\n <li class="page-item disabled">\n <span class="page-link">...</span>\n </li>\n {% endif %}\n {% endfor %}\n {% if total != num %}\n <li class="page-item">\n <button class="page-link" {{ live_action('changePage', {'page': num+1}) }}>></button>\n </li>\n <li class="page-item">\n <button class="page-link" {{ live_action('changePage', {'page': total}) }}>>></button>\n </li>\n {% else %}\n <li class="page-item disabled">\n <span class="page-link">></span>\n </li>\n <li class="page-item disabled">\n <span class="page-link">>></span>\n </li>\n {% endif %}\n </ul>\n </nav>\n {% endif %}\n {% endmacro %}\n \n <div class="controller-div" {{ attributes }} data-loading="addClass(opacity-50)">\n {% block card__out %}\n <div class="card">\n {% block card__in %}\n \n {% block card_header__out %}\n <div class="card-header border-bottom-0">\n {% block card_header__in %}\n {% block card_header_h__in %}\n <h3 class="display-3 m-0">{% block card_header_h__out %}{{ this.getMetadata().getEntityLabelPlural(this.group) }}{% endblock card_header_h__out %}</h3>\n {% endblock card_header_h__in %}\n {% if form.count() > 1 %}\n <hr>\n {% block filters_form %}\n <div style="font-size: 0.75rem !important;">\n {% form_theme form 'components/Common/EntityTableFormTheme.html.twig' %}\n {{ form(form) }}\n </div>\n {% endblock %}\n {% endif %}\n {% endblock card_header__in %}\n </div>\n {% endblock card_header__out %}\n \n {% block card_body__out %}\n <div class="card-body p-0">\n {% block card_body__in %}\n {% block main_table__out %}\n <table class="table table-hover table-bordered m-0">\n {% block main_table__in %}\n <tr>\n {% for name, metadata in this.getMetadata().getPropertiesMetadata(this.group) %}\n <th class="text-center">{{ metadata.getLabel(this.group) }}</th>\n {% endfor %}\n </tr>\n {% for entity in this.getTableData() %}\n <tr style="transform: rotate(0);">\n {% for name, metadata in this.getMetadata().getPropertiesMetadata(this.group) %}\n {% set valueClass = metadata.getValueClass(this.group) %}\n {% if metadata.withUrl(this.group) %}\n <th scope="row">\n {% else %}\n <td{% if valueClass=='App\\Infrastructure\\EntityTable\\Value\\MoneyValue' %} class="text-end"{% endif %}>\n {% endif %}\n \n {% if metadata.withUrl(this.group) %}<a href="{{ this.getRowUrl(entity) }}" class="stretched-link" data-turbo="false">{% endif %}\n {{ (this.getPropertyValue(entity, metadata.name) ?? '-')|raw }}\n {% if metadata.withUrl(this.group) %}</a>{% endif %}\n \n {% if metadata.withUrl(this.group) %}\n </th>\n {% else %}\n </td>\n {% endif %}\n {% endfor %}\n </tr>\n {% else %}\n <tr>\n <td colspan="{{ this.getMetadata().getPropertiesMetadata(this.group)|length }}" class="text-center text-muted">Нет данных</td>\n </tr>\n {% endfor %}\n {% endblock main_table__in %}\n </table>\n {% endblock main_table__out %}\n {% endblock card_body__in %}\n </div>\n {% endblock card_body__out %}\n \n {% block card_footer__out %}\n <div class="card-footer border-top-0 m-0 p-1 row justify-content-between">\n {% block card_footer__in %}\n <div class="col-auto">\n {% block per_page %}\n <nav>\n <select class="form-select form-select-sm" style="font-size: 0.75rem !important;" onchange="\n const liveController = window.app.getControllerForElementAndIdentifier(this.closest('.controller-div'), 'live');\n liveController.action({type: 'change', target: this, currentTarget: this, params: {action: 'changePerPage', perPage: this.value}});\n ">\n <option value="5"{% if 5 == perPage %} selected{% endif %}>5</option>\n <option value="10"{% if 10 == perPage %} selected{% endif %}>10</option>\n <option value="25"{% if 25 == perPage %} selected{% endif %}>25</option>\n <option value="50"{% if 50 == perPage %} selected{% endif %}>50</option>\n </select>\n </nav>\n {% endblock %}\n </div>\n <div class="col-auto">\n {% block pager %}\n {% if computed.totalPagesCount > 1 %}\n {{ _self.pager('/', computed.totalPagesCount, computed.page) }}\n {% endif %}\n {% endblock %}\n </div>\n {% endblock card_footer__in %}\n </div>\n {% endblock card_footer__out %}\n \n {% endblock card__in %}\n </div>\n {% endblock card__out %}\n </div>\n """ -name: "components/Common/EntityTable.html.twig" -path: "/app/templates/components/Common/EntityTable.html.twig" } -phpFile: "/app/vendor/twig/twig/src/Template.php" -phpLine: 460 }
in
templates/components/Common/EntityTable.html.twig
(line 109)
{% else %}<td{% if valueClass=='App\\Infrastructure\\EntityTable\\Value\\MoneyValue' %} class="text-end"{% endif %}>{% endif %}{% if metadata.withUrl(this.group) %}<a href="{{ this.getRowUrl(entity) }}" class="stretched-link" data-turbo="false">{% endif %}{{ (this.getPropertyValue(entity, metadata.name) ?? '-')|raw }}{% if metadata.withUrl(this.group) %}</a>{% endif %}{% if metadata.withUrl(this.group) %}</th>{% else %}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 377)
// line 91yield " <table class=\"table table-hover table-bordered m-0\">";// line 92yield from $this->unwrap()->yieldBlock('main_table__in', $context, $blocks);// line 125yield " </table>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_main_table__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 348)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "card_body__in"));// line 90yield " ";yield from $this->unwrap()->yieldBlock('main_table__out', $context, $blocks);// line 127yield " ";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 320)
// line 88yield " <div class=\"card-body p-0\">";// line 89yield from $this->unwrap()->yieldBlock('card_body__in', $context, $blocks);// line 128yield " </div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 135)
yield from $this->unwrap()->yieldBlock('card_header__out', $context, $blocks);// line 86yield "";// line 87yield from $this->unwrap()->yieldBlock('card_body__out', $context, $blocks);// line 130yield "";// line 131yield from $this->unwrap()->yieldBlock('card_footer__out', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
block_card__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 100)
// line 65yield "<div class=\"card\">";// line 66yield from $this->unwrap()->yieldBlock('card__in', $context, $blocks);// line 161yield "</div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 70)
// line 63yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["attributes"]) || array_key_exists("attributes", $context) ? $context["attributes"] : (function () { throw new RuntimeError('Variable "attributes" does not exist.', 63, $this->source); })()), "html", null, true);yield " data-loading=\"addClass(opacity-50)\">";// line 64yield from $this->unwrap()->yieldBlock('card__out', $context, $blocks);// line 163yield "</div>";$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php
->
yield
(line 52)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "components/Common/AssortmentPlan/EntityTable.html.twig"));$this->parent = $this->load("components/Common/EntityTable.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 77)
try {return $this->twig->loadTemplate($this->templateClasses[$template = $event->getTemplate()] ??= $this->twig->getTemplateClass($template),$template,$templateIndex,)->render($variables);} finally {$mounted = $this->componentStack->pop();$event = new PostRenderEvent($mounted);$this->dispatcher->dispatch($event);
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 56)
{if ($preRendered = $this->preCreateForRender($name, $props)) {return $preRendered;}return $this->render($this->factory->create($name, $props));}public function render(MountedComponent $mounted): string{$this->componentStack->push($mounted);
in
vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php
->
createAndRender
(line 51)
{if ($this->renderers->has($normalized = strtolower($name))) {return $this->renderers->get($normalized)->render($props);}return $this->renderer->createAndRender($name, $props);}/*** @param array<string, mixed> $props* @param array<string, mixed> $context
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
render
(line 117)
Ассортиментные планы</h1><hr>";// line 18yield $this->env->getRuntime('Symfony\UX\TwigComponent\Twig\ComponentRuntime')->render("Common:AssortmentPlan:EntityTable", ["class" => "App\\AssortmentPlan\\Entity\\AssortmentPlanOffer", "filters" => ["App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter"]]);yield "";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_body
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php
->
yieldBlock
(line 138)
yield " </div><div class=\"row mb-5\"><div class=\"col\">";// line 41yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 42yield " </div></div></div>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
yield
(line 54)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "directory/assortment_plan/index.html.twig"));$this->parent = $this->load("base.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 467)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 472)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 284)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('directory/assortment_plan/index.html.twig')
in
src/AssortmentPlan/Controller/AssortmentPlansController.php
(line 17)
#[Route('/directory/assortment_plan', name: 'data_assortment_plans', methods: ['GET'])]final class AssortmentPlansController extends AbstractController{public function __invoke(): Response{return $this->render('directory/assortment_plan/index.html.twig');}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse 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\PropertyAccess\Exception\ UninitializedPropertyException
in
vendor/symfony/property-access/PropertyAccessor.php
(line 443)
// handle uninitialized properties in PHP >= 7.4if (preg_match('/^Typed property ([\w\\\\@]+)::\$(\w+) must not be accessed before initialization$/', $e->getMessage(), $matches) || preg_match('/^Cannot access uninitialized non-nullable property ([\w\\\\@]+)::\$(\w+) by reference$/', $e->getMessage(), $matches)) {$r = new \ReflectionProperty(str_contains($matches[1], '@anonymous') ? $class : $matches[1], $matches[2]);$type = ($type = $r->getType()) instanceof \ReflectionNamedType ? $type->getName() : (string) $type;throw new UninitializedPropertyException(\sprintf('The property "%s::$%s" is not readable because it is typed "%s". You should initialize it or declare a default value instead.', $matches[1], $r->getName(), $type), 0, $e);}throw $e;}} elseif (property_exists($object, $property) && \array_key_exists($property, (array) $object)) {
in
vendor/symfony/property-access/PropertyAccessor.php
->
readProperty
(line 102)
$zval = [self::VALUE => $objectOrArray,];if (\is_object($objectOrArray) && (false === strpbrk((string) $propertyPath, '.[?') || $objectOrArray instanceof \stdClass && property_exists($objectOrArray, $propertyPath))) {return $this->readProperty($zval, $propertyPath, $this->ignoreInvalidProperty)[self::VALUE];}$propertyPath = $this->getPropertyPath($propertyPath);$propertyValues = $this->readPropertiesUntil($zval, $propertyPath, $propertyPath->getLength(), $this->ignoreInvalidIndices);
PropertyAccessor->getValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
in
src/Infrastructure/EntityTable/Component/EntityTableComponent.php
(line 166)
*/public function getPropertyValue($entity, string $property): AbstractValue{$valueClass = $this->getMetadata()->getPropertiesMetadata($this->group)[$property]->getValueClass($this->group);return new $valueClass($this->propertyAccessor->getValue($entity, $property));}public function getRowUrl($entity): ?string{if (empty($route = $this->getMetadata()->getRoute($this->group))) {
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
getPropertyValue
(line 1911)
}// Some objects throw exceptions when they have __call, and the method we try// to call is not supported. If ignoreStrictCheck is true, we should return null.try {$ret = $object->$method(...$arguments);} catch (\BadMethodCallException $e) {if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {return;}throw $e;
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
::
getAttribute
(line 463)
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 108, $this->source); })()), "getRowUrl", [$context["entity"]], "method", false, false, false, 108), "html", null, true);yield "\" class=\"stretched-link\" data-turbo=\"false\">";}// line 109yield " ";yield (((CoreExtension::getAttribute($this->env, $this->source, ($context["this"] ?? null), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", true, true, false, 109) && !(null === CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 109, $this->source); })()), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", false, false, false, 109)))) ? (CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 109, $this->source); })()), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", false, false, false, 109)) : ("-"));yield "";// line 110if ((($tmp = CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "withUrl", [CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 110, $this->source); })()), "group", [], "any", false, false, false, 110)], "method", false, false, false, 110)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {yield "</a>";
in
vendor/twig/twig/src/Template.php
->
block_main_table__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 377)
// line 91yield " <table class=\"table table-hover table-bordered m-0\">";// line 92yield from $this->unwrap()->yieldBlock('main_table__in', $context, $blocks);// line 125yield " </table>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_main_table__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 348)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "card_body__in"));// line 90yield " ";yield from $this->unwrap()->yieldBlock('main_table__out', $context, $blocks);// line 127yield " ";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 320)
// line 88yield " <div class=\"card-body p-0\">";// line 89yield from $this->unwrap()->yieldBlock('card_body__in', $context, $blocks);// line 128yield " </div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 135)
yield from $this->unwrap()->yieldBlock('card_header__out', $context, $blocks);// line 86yield "";// line 87yield from $this->unwrap()->yieldBlock('card_body__out', $context, $blocks);// line 130yield "";// line 131yield from $this->unwrap()->yieldBlock('card_footer__out', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
block_card__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 100)
// line 65yield "<div class=\"card\">";// line 66yield from $this->unwrap()->yieldBlock('card__in', $context, $blocks);// line 161yield "</div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 70)
// line 63yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["attributes"]) || array_key_exists("attributes", $context) ? $context["attributes"] : (function () { throw new RuntimeError('Variable "attributes" does not exist.', 63, $this->source); })()), "html", null, true);yield " data-loading=\"addClass(opacity-50)\">";// line 64yield from $this->unwrap()->yieldBlock('card__out', $context, $blocks);// line 163yield "</div>";$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php
->
yield
(line 52)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "components/Common/AssortmentPlan/EntityTable.html.twig"));$this->parent = $this->load("components/Common/EntityTable.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 77)
try {return $this->twig->loadTemplate($this->templateClasses[$template = $event->getTemplate()] ??= $this->twig->getTemplateClass($template),$template,$templateIndex,)->render($variables);} finally {$mounted = $this->componentStack->pop();$event = new PostRenderEvent($mounted);$this->dispatcher->dispatch($event);
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 56)
{if ($preRendered = $this->preCreateForRender($name, $props)) {return $preRendered;}return $this->render($this->factory->create($name, $props));}public function render(MountedComponent $mounted): string{$this->componentStack->push($mounted);
in
vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php
->
createAndRender
(line 51)
{if ($this->renderers->has($normalized = strtolower($name))) {return $this->renderers->get($normalized)->render($props);}return $this->renderer->createAndRender($name, $props);}/*** @param array<string, mixed> $props* @param array<string, mixed> $context
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
render
(line 117)
Ассортиментные планы</h1><hr>";// line 18yield $this->env->getRuntime('Symfony\UX\TwigComponent\Twig\ComponentRuntime')->render("Common:AssortmentPlan:EntityTable", ["class" => "App\\AssortmentPlan\\Entity\\AssortmentPlanOffer", "filters" => ["App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter"]]);yield "";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_body
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php
->
yieldBlock
(line 138)
yield " </div><div class=\"row mb-5\"><div class=\"col\">";// line 41yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 42yield " </div></div></div>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
yield
(line 54)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "directory/assortment_plan/index.html.twig"));$this->parent = $this->load("base.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 467)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 472)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 284)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('directory/assortment_plan/index.html.twig')
in
src/AssortmentPlan/Controller/AssortmentPlansController.php
(line 17)
#[Route('/directory/assortment_plan', name: 'data_assortment_plans', methods: ['GET'])]final class AssortmentPlansController extends AbstractController{public function __invoke(): Response{return $this->render('directory/assortment_plan/index.html.twig');}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Error
in
src/AssortmentPlan/Entity/AssortmentPlanOffer.php
(line 71)
#[ORM\JoinColumn(name: 'measurement_id', referencedColumnName: 'id', nullable: true)]private MeasurementUnit $mainMeasurementUnit;public function getMainMeasurementUnit(): MeasurementUnit{return $this->mainMeasurementUnit;}public function setMainMeasurementUnit(MeasurementUnit $mesurement): static{$this->mainMeasurementUnit = $mesurement;
AssortmentPlanOffer->getMainMeasurementUnit()
in
src/AssortmentPlan/Entity/AssortmentPlanOffer.php
(line 99)
#[Table\TableColumn(label: 'Наименование единицы измерения продажи')]#[Serializer\Ignore]public function getMainMeasurementUnitName(): string{return $this->getMainMeasurementUnit()->__toString();}}
in
vendor/symfony/property-access/PropertyAccessor.php
->
getMainMeasurementUnitName
(line 401)
$type = $access->getType();try {if (PropertyReadInfo::TYPE_METHOD === $type) {try {$result[self::VALUE] = $object->$name();} catch (\TypeError $e) {[$trace] = $e->getTrace();// handle uninitialized properties in PHP >= 7if (__FILE__ === ($trace['file'] ?? null)
in
vendor/symfony/property-access/PropertyAccessor.php
->
readProperty
(line 102)
$zval = [self::VALUE => $objectOrArray,];if (\is_object($objectOrArray) && (false === strpbrk((string) $propertyPath, '.[?') || $objectOrArray instanceof \stdClass && property_exists($objectOrArray, $propertyPath))) {return $this->readProperty($zval, $propertyPath, $this->ignoreInvalidProperty)[self::VALUE];}$propertyPath = $this->getPropertyPath($propertyPath);$propertyValues = $this->readPropertiesUntil($zval, $propertyPath, $propertyPath->getLength(), $this->ignoreInvalidIndices);
PropertyAccessor->getValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
in
src/Infrastructure/EntityTable/Component/EntityTableComponent.php
(line 166)
*/public function getPropertyValue($entity, string $property): AbstractValue{$valueClass = $this->getMetadata()->getPropertiesMetadata($this->group)[$property]->getValueClass($this->group);return new $valueClass($this->propertyAccessor->getValue($entity, $property));}public function getRowUrl($entity): ?string{if (empty($route = $this->getMetadata()->getRoute($this->group))) {
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
getPropertyValue
(line 1911)
}// Some objects throw exceptions when they have __call, and the method we try// to call is not supported. If ignoreStrictCheck is true, we should return null.try {$ret = $object->$method(...$arguments);} catch (\BadMethodCallException $e) {if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {return;}throw $e;
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
::
getAttribute
(line 463)
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 108, $this->source); })()), "getRowUrl", [$context["entity"]], "method", false, false, false, 108), "html", null, true);yield "\" class=\"stretched-link\" data-turbo=\"false\">";}// line 109yield " ";yield (((CoreExtension::getAttribute($this->env, $this->source, ($context["this"] ?? null), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", true, true, false, 109) && !(null === CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 109, $this->source); })()), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", false, false, false, 109)))) ? (CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 109, $this->source); })()), "getPropertyValue", [$context["entity"], CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "name", [], "any", false, false, false, 109)], "method", false, false, false, 109)) : ("-"));yield "";// line 110if ((($tmp = CoreExtension::getAttribute($this->env, $this->source, $context["metadata"], "withUrl", [CoreExtension::getAttribute($this->env, $this->source, (isset($context["this"]) || array_key_exists("this", $context) ? $context["this"] : (function () { throw new RuntimeError('Variable "this" does not exist.', 110, $this->source); })()), "group", [], "any", false, false, false, 110)], "method", false, false, false, 110)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {yield "</a>";
in
vendor/twig/twig/src/Template.php
->
block_main_table__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 377)
// line 91yield " <table class=\"table table-hover table-bordered m-0\">";// line 92yield from $this->unwrap()->yieldBlock('main_table__in', $context, $blocks);// line 125yield " </table>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_main_table__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 348)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "card_body__in"));// line 90yield " ";yield from $this->unwrap()->yieldBlock('main_table__out', $context, $blocks);// line 127yield " ";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 320)
// line 88yield " <div class=\"card-body p-0\">";// line 89yield from $this->unwrap()->yieldBlock('card_body__in', $context, $blocks);// line 128yield " </div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card_body__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 135)
yield from $this->unwrap()->yieldBlock('card_header__out', $context, $blocks);// line 86yield "";// line 87yield from $this->unwrap()->yieldBlock('card_body__out', $context, $blocks);// line 130yield "";// line 131yield from $this->unwrap()->yieldBlock('card_footer__out', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
block_card__in
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 100)
// line 65yield "<div class=\"card\">";// line 66yield from $this->unwrap()->yieldBlock('card__in', $context, $blocks);// line 161yield "</div>";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_card__out
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php
->
yieldBlock
(line 70)
// line 63yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["attributes"]) || array_key_exists("attributes", $context) ? $context["attributes"] : (function () { throw new RuntimeError('Variable "attributes" does not exist.', 63, $this->source); })()), "html", null, true);yield " data-loading=\"addClass(opacity-50)\">";// line 64yield from $this->unwrap()->yieldBlock('card__out', $context, $blocks);// line 163yield "</div>";$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php
->
yield
(line 52)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "components/Common/AssortmentPlan/EntityTable.html.twig"));$this->parent = $this->load("components/Common/EntityTable.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 77)
try {return $this->twig->loadTemplate($this->templateClasses[$template = $event->getTemplate()] ??= $this->twig->getTemplateClass($template),$template,$templateIndex,)->render($variables);} finally {$mounted = $this->componentStack->pop();$event = new PostRenderEvent($mounted);$this->dispatcher->dispatch($event);
in
vendor/symfony/ux-twig-component/src/ComponentRenderer.php
->
render
(line 56)
{if ($preRendered = $this->preCreateForRender($name, $props)) {return $preRendered;}return $this->render($this->factory->create($name, $props));}public function render(MountedComponent $mounted): string{$this->componentStack->push($mounted);
in
vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php
->
createAndRender
(line 51)
{if ($this->renderers->has($normalized = strtolower($name))) {return $this->renderers->get($normalized)->render($props);}return $this->renderer->createAndRender($name, $props);}/*** @param array<string, mixed> $props* @param array<string, mixed> $context
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
render
(line 117)
Ассортиментные планы</h1><hr>";// line 18yield $this->env->getRuntime('Symfony\UX\TwigComponent\Twig\ComponentRuntime')->render("Common:AssortmentPlan:EntityTable", ["class" => "App\\AssortmentPlan\\Entity\\AssortmentPlanOffer", "filters" => ["App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter"]]);yield "";$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_body
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php
->
yieldBlock
(line 138)
yield " </div><div class=\"row mb-5\"><div class=\"col\">";// line 41yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 42yield " </div></div></div>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php
->
yield
(line 54)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "directory/assortment_plan/index.html.twig"));$this->parent = $this->load("base.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();} else {ob_start(function () { return ''; });}try {$this->display($context);} catch (\Throwable $e) {while (ob_get_level() > $level) {ob_end_clean();}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 467)
if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);}return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 472)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 284)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
AbstractController->render('directory/assortment_plan/index.html.twig')
in
src/AssortmentPlan/Controller/AssortmentPlansController.php
(line 17)
#[Route('/directory/assortment_plan', name: 'data_assortment_plans', methods: ['GET'])]final class AssortmentPlansController extends AbstractController{public function __invoke(): Response{return $this->render('directory/assortment_plan/index.html.twig');}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse 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 02:49:47 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d22478"
},
"request_uri": "https://2026-kenobi.release.sb.paritet.sprintf.ru/_profiler/d22478",
"method": "GET"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
"event": "kernel.request",
"listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller" to listener "App\Infrastructure\EventListener\ApiAuthListener::onKernelController". {
"event": "kernel.controller",
"listener": "App\\Infrastructure\\EventListener\\ApiAuthListener::onKernelController"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "ContainerHpxGlVn\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerHpxGlVn\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 02:49:47 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Traces 3
|
[3/3]
RuntimeError
|
|---|
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("The property "App\AssortmentPlan\Entity\AssortmentPlanOffer::$mainMeasurementUnit" is not readable because it is typed "App\Measurement\Entity\MeasurementUnit". You should initialize it or declare a default value instead.") in "components/Common/EntityTable.html.twig" at line 109.
at templates/components/Common/EntityTable.html.twig:109
at Twig\Template->yieldBlock('main_table__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:377)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('main_table__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:348)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:320)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:135)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:100)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:70)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php:52)
at __TwigTemplate_7c2b48cc08e9e269f35a17cdfc5132d9->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:77)
at Symfony\UX\TwigComponent\ComponentRenderer->render(object(MountedComponent))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:56)
at Symfony\UX\TwigComponent\ComponentRenderer->createAndRender('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php:51)
at Symfony\UX\TwigComponent\Twig\ComponentRuntime->render('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:117)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->block_body(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php:138)
at __TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:54)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array())
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array())
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array())
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('directory/assortment_plan/index.html.twig', array())
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('directory/assortment_plan/index.html.twig', null, array(), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:472)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('directory/assortment_plan/index.html.twig', null, array(), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:284)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('directory/assortment_plan/index.html.twig')
(src/AssortmentPlan/Controller/AssortmentPlansController.php:17)
at App\AssortmentPlan\Controller\AssortmentPlansController->__invoke()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
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:32)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
UninitializedPropertyException
|
|---|
Symfony\Component\PropertyAccess\Exception\UninitializedPropertyException:
The property "App\AssortmentPlan\Entity\AssortmentPlanOffer::$mainMeasurementUnit" is not readable because it is typed "App\Measurement\Entity\MeasurementUnit". You should initialize it or declare a default value instead.
at vendor/symfony/property-access/PropertyAccessor.php:443
at Symfony\Component\PropertyAccess\PropertyAccessor->readProperty(array(object(AssortmentPlanOffer)), 'mainMeasurementUnitName', false)
(vendor/symfony/property-access/PropertyAccessor.php:102)
at Symfony\Component\PropertyAccess\PropertyAccessor->getValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
(src/Infrastructure/EntityTable/Component/EntityTableComponent.php:166)
at App\Infrastructure\EntityTable\Component\EntityTableComponent->getPropertyValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
(vendor/twig/twig/src/Extension/CoreExtension.php:1911)
at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), object(AssortmentPlanEntityTable), 'getPropertyValue', array(object(AssortmentPlanOffer), 'mainMeasurementUnitName'), 'method', false, false, false, 109)
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:463)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), '_seq' => object(ArrayCollection), '_iterated' => false, 'entity' => object(AssortmentPlanOffer), '_key' => 0), '_seq' => array('assortmentPlanName' => object(PropertyMetadata), 'offerName' => object(PropertyMetadata), 'mainMeasurementUnitName' => object(PropertyMetadata)), '_iterated' => false, 'entity' => object(AssortmentPlanOffer), '_key' => 0, 'metadata' => object(PropertyMetadata), 'name' => 'mainMeasurementUnitName', 'valueClass' => 'App\\Infrastructure\\EntityTable\\Value\\DefaultValue'), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('main_table__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:377)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('main_table__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:348)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:320)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:135)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:100)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:70)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php:52)
at __TwigTemplate_7c2b48cc08e9e269f35a17cdfc5132d9->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:77)
at Symfony\UX\TwigComponent\ComponentRenderer->render(object(MountedComponent))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:56)
at Symfony\UX\TwigComponent\ComponentRenderer->createAndRender('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php:51)
at Symfony\UX\TwigComponent\Twig\ComponentRuntime->render('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:117)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->block_body(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php:138)
at __TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:54)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array())
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array())
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array())
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('directory/assortment_plan/index.html.twig', array())
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('directory/assortment_plan/index.html.twig', null, array(), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:472)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('directory/assortment_plan/index.html.twig', null, array(), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:284)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('directory/assortment_plan/index.html.twig')
(src/AssortmentPlan/Controller/AssortmentPlansController.php:17)
at App\AssortmentPlan\Controller\AssortmentPlansController->__invoke()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
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:32)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
Error
|
|---|
Error:
Typed property App\AssortmentPlan\Entity\AssortmentPlanOffer::$mainMeasurementUnit must not be accessed before initialization
at src/AssortmentPlan/Entity/AssortmentPlanOffer.php:71
at App\AssortmentPlan\Entity\AssortmentPlanOffer->getMainMeasurementUnit()
(src/AssortmentPlan/Entity/AssortmentPlanOffer.php:99)
at App\AssortmentPlan\Entity\AssortmentPlanOffer->getMainMeasurementUnitName()
(vendor/symfony/property-access/PropertyAccessor.php:401)
at Symfony\Component\PropertyAccess\PropertyAccessor->readProperty(array(object(AssortmentPlanOffer)), 'mainMeasurementUnitName', false)
(vendor/symfony/property-access/PropertyAccessor.php:102)
at Symfony\Component\PropertyAccess\PropertyAccessor->getValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
(src/Infrastructure/EntityTable/Component/EntityTableComponent.php:166)
at App\Infrastructure\EntityTable\Component\EntityTableComponent->getPropertyValue(object(AssortmentPlanOffer), 'mainMeasurementUnitName')
(vendor/twig/twig/src/Extension/CoreExtension.php:1911)
at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), object(AssortmentPlanEntityTable), 'getPropertyValue', array(object(AssortmentPlanOffer), 'mainMeasurementUnitName'), 'method', false, false, false, 109)
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:463)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), '_seq' => object(ArrayCollection), '_iterated' => false, 'entity' => object(AssortmentPlanOffer), '_key' => 0), '_seq' => array('assortmentPlanName' => object(PropertyMetadata), 'offerName' => object(PropertyMetadata), 'mainMeasurementUnitName' => object(PropertyMetadata)), '_iterated' => false, 'entity' => object(AssortmentPlanOffer), '_key' => 0, 'metadata' => object(PropertyMetadata), 'name' => 'mainMeasurementUnitName', 'valueClass' => 'App\\Infrastructure\\EntityTable\\Value\\DefaultValue'), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('main_table__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:377)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('main_table__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:348)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:320)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card_body__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card_body__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:135)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__in(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__in', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:100)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_card__out(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('card__out', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:70)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array('card__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__out'), 'card__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card__in'), 'card_header__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__out'), 'card_header__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header__in'), 'card_header_h__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__in'), 'card_header_h__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_header_h__out'), 'filters_form' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_filters_form'), 'card_body__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__out'), 'card_body__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_body__in'), 'main_table__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__out'), 'main_table__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_main_table__in'), 'card_footer__out' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__out'), 'card_footer__in' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_card_footer__in'), 'per_page' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_per_page'), 'pager' => array(object(__TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4), 'block_pager')))
(var/cache/dev/twig/03/0360a6bd65dcaf8f724fe57c794a0054.php:52)
at __TwigTemplate_7c2b48cc08e9e269f35a17cdfc5132d9->doDisplay(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(AssortmentPlanEntityTable), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('assortmentPlan' => '', '_token' => 'beef4e2db.SG-aAfN8ugQ2E4wyTO-tyT213k28xjXtwWi5MkACpDE.cDj8bJQdyDdPds5DJdv9_mvmlH75iVKLjCDmAhNIzwYPJao1qS78fF1V6w'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter'), 'form' => object(FormView)), '__context' => array()))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:77)
at Symfony\UX\TwigComponent\ComponentRenderer->render(object(MountedComponent))
(vendor/symfony/ux-twig-component/src/ComponentRenderer.php:56)
at Symfony\UX\TwigComponent\ComponentRenderer->createAndRender('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php:51)
at Symfony\UX\TwigComponent\Twig\ComponentRuntime->render('Common:AssortmentPlan:EntityTable', array('class' => 'App\\AssortmentPlan\\Entity\\AssortmentPlanOffer', 'filters' => array('App\\AssortmentPlan\\EntityTable\\Filter\\AssortmentPlanFilter')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:117)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->block_body(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php:138)
at __TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(var/cache/dev/twig/c1/c1067e7b6584ef2ad77c8e296e044313.php:54)
at __TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290->doDisplay(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_title'), 'body' => array(object(__TwigTemplate_8cafab7bdee95e92a7c1d55d7b662290), 'block_body')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array())
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array())
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array())
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('directory/assortment_plan/index.html.twig', array())
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('directory/assortment_plan/index.html.twig', null, array(), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:472)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('directory/assortment_plan/index.html.twig', null, array(), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:284)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('directory/assortment_plan/index.html.twig')
(src/AssortmentPlan/Controller/AssortmentPlansController.php:17)
at App\AssortmentPlan\Controller\AssortmentPlansController->__invoke()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
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:32)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|