Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: Undefined variable: presentation_key

Exception

ErrorException

  1.             $presentation_key $k;
  2.             $presentation_ol $v['language'];
  3.             $presentation_olterm $this->spectacles->getNameLanguage($v['language']);
  4.         }
  5.         $this->data_spectacles['presentation_spectacle'] = $presentations_spectacle[$presentation_key];
  6.         $this->data_spectacles['presentation_spectacle']['ol'] = $presentation_ol;
  7.         $this->data_spectacles['presentation_spectacle']['olterm'] = $presentation_olterm;
  8.         if (isset($savoir_plus_present)) {
  9.             $this->data_spectacles['presentation_spectacle']['text'] = $this->contents->cutSentence($this->data_spectacles['presentation_spectacle']['text'], 600);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

ErrorException
ErrorException:
Notice: Undefined variable: presentation_key

  at /home/web/theatre-contemporain.net/dev/src/Controller/SpectacleController.php:894
  at App\Controller\SpectacleController->action_detail_spectacle()
     (/home/web/theatre-contemporain.net/dev/vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (/home/web/theatre-contemporain.net/dev/vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (/home/web/theatre-contemporain.net/dev/vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (/home/web/theatre-contemporain.net/dev/public/index.php:20)