Exceptions
Exceptions 2
Twig\Error\ RuntimeError
Show exception properties
Twig\Error\RuntimeError {#14012 -lineno: 109 -rawMessage: "An exception has been thrown during the rendering of a template ("Entity of type 'App\Client\Entity\ClientContract' for IDs id(0daddc21-fd80-479b-8f81-ae15a00489a3) was not found")." -source: Twig\Source {#14042 -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/4a/4a5e5e9358e1db380bb3e9f71e72f9e4.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/PriceByContract/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/45/453792c3918c1206c93b7f66af1374d2.php
->
render
(line 181)
<hr/>";// line 54yield $this->env->getRuntime('Symfony\UX\TwigComponent\Twig\ComponentRuntime')->render("PriceByContract:EntityTable", ["class" => "App\\Price\\Entity\\PriceByContract", "offer" => CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 54, $this->source); })()), "vars", [], "any", false, false, false, 54), "value", [], "any", false, false, false, 54)]);yield "<!-- Modal --><div class=\"modal fade\" id=\"form-edit-offer-modal\" tabindex=\"-1\" aria-labelledby=\"form-edit-offer-modal-label\" aria-hidden=\"true\">
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 136)
$context = array_intersect_key($context, $_parent) + $_parent;// line 38yield " </div>";// line 39yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 40yield "</div></body></html>
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/45/453792c3918c1206c93b7f66af1374d2.php
->
yield
(line 55)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "directory/offer/one.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 463)
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 468)
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 282)
* 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/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
in
src/Offer/Controller/OfferOneController.php
(line 40)
$this->entityManager->flush();return $this->redirectToRoute('data_offers_one', ['id' => $offer->getId()]);}return $this->render('directory/offer/one.html.twig', ['form' => $form->createView(),'offer' => $offer,]);}}
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 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}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 29)
$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']);};
Doctrine\ORM\ EntityNotFoundException
in
vendor/doctrine/orm/src/EntityNotFoundException.php
(line 31)
foreach ($id as $key => $value) {$ids[] = $key . '(' . $value . ')';}return new self('Entity of type \'' . $className . '\'' . ($ids ? ' for IDs ' . implode(', ', $ids) : '') . ' was not found',);}/**
in
vendor/doctrine/orm/src/Proxy/ProxyFactory.php
::
fromClassNameAndIdentifier
(line 298)
{return static function (InternalProxy $proxy, array $identifier) use ($entityPersister, $classMetadata, $identifierFlattener): void {$original = $entityPersister->loadById($identifier);if ($original === null) {throw EntityNotFoundException::fromClassNameAndIdentifier($classMetadata->getName(),$identifierFlattener->flattenIdentifier($classMetadata, $identifier),);}
in
vendor/doctrine/orm/src/Proxy/ProxyFactory.php
::
Doctrine\ORM\Proxy\{closure}
(line 373)
$identifierFields[$identifier] = $class->getPropertyAccessor($identifier);}$proxyFactory = Closure::bind(static function (array $identifier) use ($initializer, $skippedProperties, $identifierFields, $className): InternalProxy {$proxy = self::createLazyGhost(static function (InternalProxy $object) use ($initializer, $identifier): void {$initializer($object, $identifier);}, $skippedProperties);foreach ($identifierFields as $idField => $reflector) {if (! isset($identifier[$idField])) {throw ORMInvalidArgumentException::missingPrimaryKeyValue($className, $idField);
in
vendor/symfony/var-exporter/Internal/LazyObjectState.php
::
Doctrine\ORM\Proxy\{closure}
(line 60)
try {if ($defaultProperties = array_diff_key(LazyObjectRegistry::$defaultProperties[$instance::class], $this->skippedProperties)) {PublicHydrator::hydrate($instance, $defaultProperties);}($this->initializer)($instance);} catch (\Throwable $e) {$this->status = self::STATUS_UNINITIALIZED_FULL;$this->reset($instance);throw $e;
in
vendor/symfony/var-exporter/LazyGhostTrait.php
->
initialize
(line 153)
}if (\PHP_VERSION_ID >= 80400 && !$notByRef && ($access >> 2) & \ReflectionProperty::IS_PRIVATE_SET) {$scope ??= $writeScope;}if ($property?->isInitialized($this) ?? LazyObjectState::STATUS_UNINITIALIZED_PARTIAL !== $state->initialize($this, $name, $writeScope ?? $scope)) {goto get_in_scope;}}}
#[Groups([LoginApiAction::class])]private string $contractName;public function getContractName(): string{return $this->contractName;}public function setContractName(string $contractName): static{$this->contractName = $contractName;
#[Table\TableColumn(label: 'Имя контракта', order: 0, withUrl: true)]#[Serializer\Ignore]public function getContractName(): string{return $this->getClientContract()->getContractName();}#[ORM\OneToOne(targetEntity: LoadedEntityPriceByContract::class, mappedBy: 'priceByContract')]private LoadedEntityPriceByContract $loadedEntity;}
in
vendor/symfony/property-access/PropertyAccessor.php
->
getContractName
(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(PriceByContract), 'contractName')
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/4a/4a5e5e9358e1db380bb3e9f71e72f9e4.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/PriceByContract/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/45/453792c3918c1206c93b7f66af1374d2.php
->
render
(line 181)
<hr/>";// line 54yield $this->env->getRuntime('Symfony\UX\TwigComponent\Twig\ComponentRuntime')->render("PriceByContract:EntityTable", ["class" => "App\\Price\\Entity\\PriceByContract", "offer" => CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 54, $this->source); })()), "vars", [], "any", false, false, false, 54), "value", [], "any", false, false, false, 54)]);yield "<!-- Modal --><div class=\"modal fade\" id=\"form-edit-offer-modal\" tabindex=\"-1\" aria-labelledby=\"form-edit-offer-modal-label\" aria-hidden=\"true\">
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 136)
$context = array_intersect_key($context, $_parent) + $_parent;// line 38yield " </div>";// line 39yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 40yield "</div></body></html>
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/45/453792c3918c1206c93b7f66af1374d2.php
->
yield
(line 55)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "directory/offer/one.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 463)
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 468)
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 282)
* 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/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
in
src/Offer/Controller/OfferOneController.php
(line 40)
$this->entityManager->flush();return $this->redirectToRoute('data_offers_one', ['id' => $offer->getId()]);}return $this->render('directory/offer/one.html.twig', ['form' => $form->createView(),'offer' => $offer,]);}}
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 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}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 29)
$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 15:53:30 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "520096"
},
"request_uri": "https://2026-fett.release.sb.paritet.sprintf.ru/_profiler/520096",
"method": "GET"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
"event": "kernel.request",
"listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | 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 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 15:53:30 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 15:53:30 | 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 15:53:30 | 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 15:53:30 | 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 15:53:30 | event |
Notified event "kernel.controller_arguments" to listener "ContainerAhxkly4\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerAhxkly4\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 15:53:30 | 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 2
|
[2/2]
RuntimeError
|
|---|
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Entity of type 'App\Client\Entity\ClientContract' for IDs id(0daddc21-fd80-479b-8f81-ae15a00489a3) was not found") 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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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/4a/4a5e5e9358e1db380bb3e9f71e72f9e4.php:52)
at __TwigTemplate_844626daca572d7f0163033d4e59e82c->doDisplay(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array()))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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('PriceByContract:EntityTable', array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer)))
(vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php:51)
at Symfony\UX\TwigComponent\Twig\ComponentRuntime->render('PriceByContract:EntityTable', array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer)))
(var/cache/dev/twig/45/453792c3918c1206c93b7f66af1374d2.php:181)
at __TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4->block_body(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php:136)
at __TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333->doDisplay(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(var/cache/dev/twig/45/453792c3918c1206c93b7f66af1374d2.php:55)
at __TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4->doDisplay(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('directory/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:463)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('directory/offer/one.html.twig', null, array('form' => object(FormView), 'offer' => object(Offer)), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:468)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('directory/offer/one.html.twig', null, array('form' => object(FormView), 'offer' => object(Offer)), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:282)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('directory/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
(src/Offer/Controller/OfferOneController.php:40)
at App\Offer\Controller\OfferOneController->__invoke('a6597dfb-97d8-4e15-a440-a48516eecc36', object(Request))
(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:182)
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:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
EntityNotFoundException
|
|---|
Doctrine\ORM\EntityNotFoundException:
Entity of type 'App\Client\Entity\ClientContract' for IDs id(0daddc21-fd80-479b-8f81-ae15a00489a3) was not found
at vendor/doctrine/orm/src/EntityNotFoundException.php:31
at Doctrine\ORM\EntityNotFoundException::fromClassNameAndIdentifier('App\\Client\\Entity\\ClientContract', array('id' => object(UuidV4)))
(vendor/doctrine/orm/src/Proxy/ProxyFactory.php:298)
at Doctrine\ORM\Proxy\ProxyFactory::Doctrine\ORM\Proxy\{closure}(object(ClientContract), array('id' => object(UuidV4)))
(vendor/doctrine/orm/src/Proxy/ProxyFactory.php:373)
at Proxies\__CG__\App\Client\Entity\ClientContract::Doctrine\ORM\Proxy\{closure}(object(ClientContract))
(vendor/symfony/var-exporter/Internal/LazyObjectState.php:60)
at Symfony\Component\VarExporter\Internal\LazyObjectState->initialize(object(ClientContract), 'contractName', 'App\\Client\\Entity\\ClientContract')
(vendor/symfony/var-exporter/LazyGhostTrait.php:153)
at Proxies\__CG__\App\Client\Entity\ClientContract->__get('contractName')
(src/Client/Entity/ClientContract.php:59)
at App\Client\Entity\ClientContract->getContractName()
(src/Price/Entity/PriceByContract.php:49)
at App\Price\Entity\PriceByContract->getContractName()
(vendor/symfony/property-access/PropertyAccessor.php:401)
at Symfony\Component\PropertyAccess\PropertyAccessor->readProperty(array(object(PriceByContract)), 'contractName', false)
(vendor/symfony/property-access/PropertyAccessor.php:102)
at Symfony\Component\PropertyAccess\PropertyAccessor->getValue(object(PriceByContract), 'contractName')
(src/Infrastructure/EntityTable/Component/EntityTableComponent.php:166)
at App\Infrastructure\EntityTable\Component\EntityTableComponent->getPropertyValue(object(PriceByContract), 'contractName')
(vendor/twig/twig/src/Extension/CoreExtension.php:1911)
at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), object(PriceByContractEntityTableComponent), 'getPropertyValue', array(object(PriceByContract), 'contractName'), 'method', false, false, false, 109)
(var/cache/dev/twig/b7/b7455bcfd07555d49cea45bb120b3e9e.php:463)
at __TwigTemplate_c93b90108fee8c69cc64e8ba6f6e49b4->block_main_table__in(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable), '_parent' => array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), '_seq' => object(ArrayCollection), '_iterated' => false, 'entity' => object(PriceByContract), '_key' => 0), '_seq' => array('contractName' => object(PropertyMetadata), 'sourceId' => object(PropertyMetadata), 'pricePrimary' => object(PropertyMetadata), 'priceSecondary' => object(PropertyMetadata)), '_iterated' => false, 'entity' => object(PriceByContract), '_key' => 0, 'metadata' => object(PropertyMetadata), 'name' => 'contractName', '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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/4a/4a5e5e9358e1db380bb3e9f71e72f9e4.php:52)
at __TwigTemplate_844626daca572d7f0163033d4e59e82c->doDisplay(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array(), 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), 'form' => object(FormView)), '__context' => array()))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer), 'page' => 1, 'perPage' => 25, 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'form' => object(FormView), 'attributes' => object(ComponentAttributes), 'this' => object(PriceByContractEntityTableComponent), 'computed' => object(ComputedPropertiesProxy), 'outerScope' => array(), '__props' => array('page' => 1, 'perPage' => 25, 'class' => 'App\\Price\\Entity\\PriceByContract', 'data' => null, 'template' => '', 'group' => '*', 'initialFormData' => null, 'formName' => null, 'formValues' => array('_token' => '61d8bab6c6bd8859e6cea48.tvBsKwV39VP1Vkafl1jb0J3v2cilQqkvDklJMdIegIo.5qIUf2dAgCCqFDP4wCCq6NKl7JvNFYRmb2RwQOZB9P393QJJbBKzYpMzNQ'), 'isValidated' => false, 'validatedFields' => array(), 'filters' => array(), 'contract' => null, 'offer' => object(Offer), '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('PriceByContract:EntityTable', array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer)))
(vendor/symfony/ux-twig-component/src/Twig/ComponentRuntime.php:51)
at Symfony\UX\TwigComponent\Twig\ComponentRuntime->render('PriceByContract:EntityTable', array('class' => 'App\\Price\\Entity\\PriceByContract', 'offer' => object(Offer)))
(var/cache/dev/twig/45/453792c3918c1206c93b7f66af1374d2.php:181)
at __TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4->block_body(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(var/cache/dev/twig/7b/7bea867550ae2028ecc1086c414b4f7d.php:136)
at __TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333->doDisplay(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts'), 'importmap' => array(object(__TwigTemplate_a87e92147e4359ecd16d14e9e5d5b333), 'block_importmap'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body')))
(var/cache/dev/twig/45/453792c3918c1206c93b7f66af1374d2.php:55)
at __TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4->doDisplay(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('form' => object(FormView), 'offer' => object(Offer), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_title'), 'body' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_body'), 'javascripts' => array(object(__TwigTemplate_fa30e4c869b173bfe68acdd6ce7916f4), 'block_javascripts')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('directory/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:463)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('directory/offer/one.html.twig', null, array('form' => object(FormView), 'offer' => object(Offer)), 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:468)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('directory/offer/one.html.twig', null, array('form' => object(FormView), 'offer' => object(Offer)), null, 'render')
(vendor/symfony/framework-bundle/Controller/AbstractController.php:282)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('directory/offer/one.html.twig', array('form' => object(FormView), 'offer' => object(Offer)))
(src/Offer/Controller/OfferOneController.php:40)
at App\Offer\Controller\OfferOneController->__invoke('a6597dfb-97d8-4e15-a440-a48516eecc36', object(Request))
(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:182)
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:29)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|