https://ourhoneybee.eu/ticket/edit/59

Exceptions

An exception has been thrown during the rendering of a template ("Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.").

Exceptions 2

Twig\Error\ RuntimeError

  1.             {# WEB-3 Â§4: Solutions organized around BUYERS, not technologies #}
  2.             <li class="hb-drop">
  3.                 <a href="{{ url('honeybee_solutions') }}"
  4.                    class="{{ app.request.get('_route') == 'honeybee_solutions' ? 'active' : '' }}">Solutions <i class="fa-solid fa-chevron-down hb-caret"></i></a>
  5.                 <ul class="hb-dd-menu">
  6.                     <li><a href="{{ url('honeybee_solution', {'slug': 'solar-epc'}) }}"
  7.                            class="{{ app.request.get('slug') == 'solar-epc' ? 'active' : '' }}">Solar EPC Companies</a></li>
  8.                     <li><a href="{{ url('honeybee_solution', {'slug': 'system-integrators'}) }}"
  9.                            class="{{ app.request.get('slug') == 'system-integrators' ? 'active' : '' }}">System Integrators</a></li>
  10.                     <li><a href="{{ url('honeybee_solution', {'slug': 'energy-asset-owners'}) }}"
  11.                            class="{{ app.request.get('slug') == 'energy-asset-owners' ? 'active' : '' }}">Energy Asset Owners</a></li>
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@CompanyGroup/pages/tickets/create_ticket.html.twig"));
  2.         // line 1
  3.         $context["page_title"] = "New Ticket | HoneyBee";
  4.         // line 2
  5.         yield from         $this->loadTemplate("@Application/inc/central_header.html.twig""@CompanyGroup/pages/tickets/create_ticket.html.twig"2)->unwrap()->yield($context);
  6.         // line 3
  7.         yield from         $this->loadTemplate("@CompanyGroup/pages/admin/_sidebar.html.twig""@CompanyGroup/pages/tickets/create_ticket.html.twig"3)->unwrap()->yield($context);
  8.         // line 4
  9.         yield "
  10. <style>
in vendor/twig/twig/src/Template.php -> doDisplay (line 360)
  1.             }
  2.             $level ob_get_level();
  3.             ob_start();
  4.             foreach ($this->doDisplay($context$blocks) as $data) {
  5.                 if (ob_get_length()) {
  6.                     $data ob_get_clean().$data;
  7.                     ob_start();
  8.                 }
  1.     }
  2.     public function render(array $context): string
  3.     {
  4.         $content '';
  5.         foreach ($this->yield($context) as $data) {
  6.             $content .= $data;
  7.         }
  8.         return $content;
  9.     }
  1.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true)) in src/CompanyGroupBundle/Controller/TicketController.php (line 277)
  1.             'lastPayloadJson'        => $ticket->getLastPayloadJson(),
  2.             'feedback'               => $ticket->getFeedback(),
  3.         ];
  4.         return $this->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', [
  5.             'ticket'   => $ticket,
  6.             'formData' => $formData,
  7.             'editMode' => true,
  8.         ]);
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> EditTicketAction (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app_dev.php (line 30)
  1. Debug::enable();
  2. $kernel = new AppKernel('dev'true);
  3. //$kernel->loadClassCache();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ InvalidParameterException

Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.

  1.                 if (!$optional || $important || !\array_key_exists($varName$defaults) || (null !== $mergedParams[$varName] && (string) $mergedParams[$varName] !== (string) $defaults[$varName])) {
  2.                     // check requirement (while ignoring look-around patterns)
  3.                     if (null !== $this->strictRequirements && !preg_match('#^'.preg_replace('/\(\?(?:=|<=|!|<!)((?:[^()\\\\]+|\\\\.|\((?1)\))*)\)/'''$token[2]).'$#i'.(empty($token[4]) ? '' 'u'), $mergedParams[$token[3]] ?? '')) {
  4.                         if ($this->strictRequirements) {
  5.                             throw new InvalidParameterException(strtr($message, ['{parameter}' => $varName'{route}' => $name'{expected}' => $token[2], '{given}' => $mergedParams[$varName]]));
  6.                         }
  7.                         if ($this->logger) {
  8.                             $this->logger->error($message, ['parameter' => $varName'route' => $name'expected' => $token[2], 'given' => $mergedParams[$varName]]);
  9.                         }
  1.             } elseif (!isset($parameters['_locale'])) {
  2.                 $parameters['_locale'] = $defaults['_locale'];
  3.             }
  4.         }
  5.         return $this->doGenerate($variables$defaults$requirements$tokens$parameters$name$referenceType$hostTokens$requiredSchemes);
  6.     }
  7. }
in vendor/symfony/routing/Router.php -> generate (line 235)
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH)
  5.     {
  6.         return $this->getGenerator()->generate($name$parameters$referenceType);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         return $this->generator->generate($name$parameters$relative UrlGeneratorInterface::RELATIVE_PATH UrlGeneratorInterface::ABSOLUTE_PATH);
  2.     }
  3.     public function getUrl(string $name, array $parameters = [], bool $schemeRelative false): string
  4.     {
  5.         return $this->generator->generate($name$parameters$schemeRelative UrlGeneratorInterface::NETWORK_PATH UrlGeneratorInterface::ABSOLUTE_URL);
  6.     }
  7.     /**
  8.      * Determines at compile time whether the generated URL will be safe and thus
  9.      * saving the unneeded automatic escaping for performance reasons.
  1.             yield (((=== CoreExtension::compare(CoreExtension::getAttribute($this->env$this->sourceCoreExtension::getAttribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'1056$this->source); })()), "request", [], "any"falsefalsefalse1056), "get", ["_route"], "method"falsefalsefalse1056), "honeybee_solutions"))) ? ("active") : (""));
  2.             yield "\">Solutions <i class=\"fa-solid fa-chevron-down hb-caret\"></i></a>
  3.                 <ul class=\"hb-dd-menu\">
  4.                     <li><a href=\"";
  5.             // line 1058
  6.             yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("honeybee_solution", ["slug" => "solar-epc"]);
  7.             yield "\"
  8.                            class=\"";
  9.             // line 1059
  10.             yield (((=== CoreExtension::compare(CoreExtension::getAttribute($this->env$this->sourceCoreExtension::getAttribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'1059$this->source); })()), "request", [], "any"falsefalsefalse1059), "get", ["slug"], "method"falsefalsefalse1059), "solar-epc"))) ? ("active") : (""));
  11.             yield "\">Solar EPC Companies</a></li>
in vendor/twig/twig/src/Template.php -> doDisplay (line 360)
  1.             }
  2.             $level ob_get_level();
  3.             ob_start();
  4.             foreach ($this->doDisplay($context$blocks) as $data) {
  5.                 if (ob_get_length()) {
  6.                     $data ob_get_clean().$data;
  7.                     ob_start();
  8.                 }
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@CompanyGroup/pages/tickets/create_ticket.html.twig"));
  2.         // line 1
  3.         $context["page_title"] = "New Ticket | HoneyBee";
  4.         // line 2
  5.         yield from         $this->loadTemplate("@Application/inc/central_header.html.twig""@CompanyGroup/pages/tickets/create_ticket.html.twig"2)->unwrap()->yield($context);
  6.         // line 3
  7.         yield from         $this->loadTemplate("@CompanyGroup/pages/admin/_sidebar.html.twig""@CompanyGroup/pages/tickets/create_ticket.html.twig"3)->unwrap()->yield($context);
  8.         // line 4
  9.         yield "
  10. <style>
in vendor/twig/twig/src/Template.php -> doDisplay (line 360)
  1.             }
  2.             $level ob_get_level();
  3.             ob_start();
  4.             foreach ($this->doDisplay($context$blocks) as $data) {
  5.                 if (ob_get_length()) {
  6.                     $data ob_get_clean().$data;
  7.                     ob_start();
  8.                 }
  1.     }
  2.     public function render(array $context): string
  3.     {
  4.         $content '';
  5.         foreach ($this->yield($context) as $data) {
  6.             $content .= $data;
  7.         }
  8.         return $content;
  9.     }
  1.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true)) in src/CompanyGroupBundle/Controller/TicketController.php (line 277)
  1.             'lastPayloadJson'        => $ticket->getLastPayloadJson(),
  2.             'feedback'               => $ticket->getFeedback(),
  3.         ];
  4.         return $this->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', [
  5.             'ticket'   => $ticket,
  6.             'formData' => $formData,
  7.             'editMode' => true,
  8.         ]);
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> EditTicketAction (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app_dev.php (line 30)
  1. Debug::enable();
  2. $kernel = new AppKernel('dev'true);
  3. //$kernel->loadClassCache();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 18:12:18 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://www.ourhoneybee.space/_pika/latest?ip=51.89.129.94",
    "method": "GET"
}
INFO 18:12:18 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 18:12:18 php User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:12:18 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:12:18 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"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:12:18 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"
}
INFO 18:12:18 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "localhost",
        "port": null,
        "dbname": "u405565514_honeybee_iot",
        "user": "u405565514_honeybee_iot",
        "password": "<redacted>",
        "charset": "UTF8",
        "driverOptions": [],
        "defaultTableOptions": []
    }
}
DEBUG 18:12:18 doctrine Executing query: SELECT data FROM acc_setting WHERE name = 'cors_extra_origins' ORDER BY id DESC LIMIT 1
{
    "sql": "SELECT data FROM acc_setting WHERE name = 'cors_extra_origins' ORDER BY id DESC LIMIT 1"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:12:18 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"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:12:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 18:12:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:12:18 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 ("Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.").

  at src/ApplicationBundle/Resources/views/inc/central_header.html.twig:1058
  at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'))
     (var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php:46)
  at __TwigTemplate_d3c14b32ec9a23d50656de5d8361b57237ef38bbdfdf77b3d0f40772c63c6a4a->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'), array())
     (vendor/twig/twig/src/Template.php:360)
  at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime'))
     (vendor/twig/twig/src/Template.php:335)
  at Twig\Template->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/twig/twig/src/Environment.php:306)
  at Twig\Environment->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (src/CompanyGroupBundle/Controller/TicketController.php:277)
  at CompanyGroupBundle\Controller\TicketController->EditTicketAction(object(Request), '59')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app_dev.php:30)                
[1/2] InvalidParameterException
Symfony\Component\Routing\Exception\InvalidParameterException:
Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.

  at vendor/symfony/routing/Generator/UrlGenerator.php:194
  at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate(array('slug' => 0), array('_controller' => 'ApplicationBundle\\Modules\\HoneybeeWeb\\Controller\\HoneybeeWebPublicController:CentralSolutionPageAction'), array('slug' => 'erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv'), array(array('variable', '/', 'erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv', 'slug'), array('text', '/solutions')), array('slug' => 'solar-epc'), 'honeybee_solution', 0, array(), array())
     (vendor/symfony/routing/Generator/CompiledUrlGenerator.php:67)
  at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('honeybee_solution', array('slug' => 'solar-epc'), 0)
     (vendor/symfony/routing/Router.php:235)
  at Symfony\Component\Routing\Router->generate('honeybee_solution', array('slug' => 'solar-epc'), 0)
     (vendor/symfony/twig-bridge/Extension/RoutingExtension.php:53)
  at Symfony\Bridge\Twig\Extension\RoutingExtension->getUrl('honeybee_solution', array('slug' => 'solar-epc'))
     (var/cache/dev/twig/93/9325cfdf844add482b1c54e1ccadc5cfa93cf143e5fa4514abea2bcfd4700968.php:1308)
  at __TwigTemplate_f31777615914bf63be65cb0be3bde0be28d475743b52c849cec75c30f96d7643->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee', 'include_html' => 1, '_noindex_routes' => array('user_login', 'sign_up', 'reset_password', 'verify_email', 'verify_otp', 'reset_new_password', 'honeybee_otp_verification', 'hb360_my_estimate', 'hb360_shared_estimate'), 'BUDDYBEE_ADMIN_LEVEL' => 0, 'isConsultant' => 0), array())
     (vendor/twig/twig/src/Template.php:360)
  at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'))
     (var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php:46)
  at __TwigTemplate_d3c14b32ec9a23d50656de5d8361b57237ef38bbdfdf77b3d0f40772c63c6a4a->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'), array())
     (vendor/twig/twig/src/Template.php:360)
  at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime'))
     (vendor/twig/twig/src/Template.php:335)
  at Twig\Template->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/twig/twig/src/Environment.php:306)
  at Twig\Environment->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
     (src/CompanyGroupBundle/Controller/TicketController.php:277)
  at CompanyGroupBundle\Controller\TicketController->EditTicketAction(object(Request), '59')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app_dev.php:30)