Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

tpoint\KlimacentBundle\Entity\Project object not found by the @ParamConverter annotation.

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.         if (null === $object && false === $configuration->isOptional()) {
  2.             $message sprintf('%s object not found by the @%s annotation.'$class$this->getAnnotationName($configuration));
  3.             if ($errorMessage) {
  4.                 $message .= ' '.$errorMessage;
  5.             }
  6.             throw new NotFoundHttpException($message);
  7.         }
  8.         $request->attributes->set($name$object);
  9.         return true;
  1.             return;
  2.         }
  3.         foreach ($this->all() as $converter) {
  4.             if ($converter->supports($configuration)) {
  5.                 if ($converter->apply($request$configuration)) {
  6.                     return;
  7.                 }
  8.             }
  9.         }
  10.     }
  1.         if (\is_object($configurations)) {
  2.             $configurations = [$configurations];
  3.         }
  4.         foreach ($configurations as $configuration) {
  5.             $this->applyConverter($request$configuration);
  6.         }
  7.     }
  8.     /**
  9.      * Applies converter on request based on the given configuration.
  1.             }
  2.             $configurations $this->autoConfigure($r$request$configurations);
  3.         }
  4.         $this->manager->apply($request$configurations);
  5.     }
  6.     private function autoConfigure(\ReflectionFunctionAbstract $rRequest $request$configurations)
  7.     {
  8.         foreach ($r->getParameters() as $param) {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         if (false === $controller $this->resolver->getController($request)) {
  2.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  3.         }
  4.         $event = new ControllerEvent($this$controller$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER);
  6.         $controller $event->getController();
  7.         // controller arguments
  8.         $arguments $this->argumentResolver->getArguments($request$controller);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  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() in public/index.php (line 20)
  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);

Logs 1

Level Channel Message
INFO 17:40:19 request Matched route "tpoint_public_klimacent_project_detail".
{
    "route": "tpoint_public_klimacent_project_detail",
    "route_parameters": {
        "_route": "tpoint_public_klimacent_project_detail",
        "_controller": "tpoint\\KlimacentBundle\\Controller\\PublicController::projectDetail",
        "id": "199",
        "_locale": "en"
    },
    "request_uri": "http://aeev.t-point.at/public/klimacent-project/199/detail",
    "method": "GET"
}
DEBUG 17:40:19 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 17:40:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "tpoint\\AdminBundle\\Security\\LoginFormAuthenticator"
}
DEBUG 17:40:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "tpoint\\AdminBundle\\Security\\LoginFormAuthenticator"
}
DEBUG 17:40:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\LoginLinkAuthenticator"
}
DEBUG 17:40:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\LoginLinkAuthenticator"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Liip\FunctionalTestBundle\EventListener\ExceptionListener::clearLastException".
{
    "event": "kernel.request",
    "listener": "Liip\\FunctionalTestBundle\\EventListener\\ExceptionListener::clearLastException"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Liip\FunctionalTestBundle\Validator\DataCollectingValidator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Liip\\FunctionalTestBundle\\Validator\\DataCollectingValidator::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TestSessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\RequestLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\RequestLocaleListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\DoctrineExtensionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\DoctrineExtensionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\DoctrineExtensionListener::onLateKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\DoctrineExtensionListener::onLateKernelRequest"
}
INFO 17:40:19 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "dbname": "tpoint_standard",
        "driver": "pdo_mysql",
        "host": "tpoint_mysql",
        "port": 3306,
        "user": "tpoint",
        "password": "<redacted>",
        "driverOptions": [],
        "serverVersion": "8.0",
        "defaultTableOptions": {
            "charset": "utf8mb4",
            "collation": "utf8mb4_unicode_ci"
        },
        "charset": "utf8mb4"
    }
}
DEBUG 17:40:19 doctrine Executing statement: SELECT c0_.name AS name_0, c0_.value AS value_1 FROM cssvariable c0_ WHERE c0_.name IN (?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT c0_.name AS name_0, c0_.value AS value_1 FROM cssvariable c0_ WHERE c0_.name IN (?, ?, ?, ?, ?, ?, ?)",
    "params": {
        "1": "background-color",
        "2": "body-color",
        "3": "menu-background-color",
        "4": "main-color",
        "5": "text-color",
        "6": "text-menu-color",
        "7": "inactive-color"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 17:40:19 doctrine Executing statement: SELECT c0_.id AS id_0, c0_.type AS type_1, c0_.path AS path_2, c0_.version AS version_3 FROM customlogo c0_ WHERE c0_.type IN (?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT c0_.id AS id_0, c0_.type AS type_1, c0_.path AS path_2, c0_.version AS version_3 FROM customlogo c0_ WHERE c0_.type IN (?, ?, ?)",
    "params": {
        "1": "main_logo_upper_left",
        "2": "upright_logo_login",
        "3": "background_logo"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2
    }
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 doctrine Executing statement: SELECT t0.id AS id_1, t0.tmp_oldId AS tmp_oldId_2, t0.name AS name_3, t0.address AS address_4, t0.additionalAddress AS additionalAddress_5, t0.zipCode AS zipCode_6, t0.city AS city_7, t0.latitude AS latitude_8, t0.longitude AS longitude_9, t0.capacity AS capacity_10, t0.annualOutputAverage AS annualOutputAverage_11, t0.buildYear AS buildYear_12, t0.investmentHeight AS investmentHeight_13, t0.meterPoint AS meterPoint_14, t0.statisticsUrl AS statisticsUrl_15, t0.public AS public_16, t0.co2 AS co2_17, t0.area AS area_18, t0.notes AS notes_19, t0.turnout AS turnout_20, t0.active AS active_21, t0.lotNumber AS lotNumber_22, t0.appliedAidAmount AS appliedAidAmount_23, t0.publicAidApplied AS publicAidApplied_24, t0.sponsor AS sponsor_25, t0.description AS description_26, t0.additional_unit AS additional_unit_27, t0.public_id AS public_id_28, t0.group_id AS group_id_29, t0.contact_id AS contact_id_30, t0.contactPerson_id AS contactPerson_id_31, t0.bankAccount_id AS bankAccount_id_32, t0.file_id AS file_id_33, t0.image_id AS image_id_34, t0.nation_id AS nation_id_35, t0.province_id AS province_id_36, t0.state_id AS state_id_37, t0.projectFund_id AS projectFund_id_38 FROM klimacent__project t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.tmp_oldId AS tmp_oldId_2, t0.name AS name_3, t0.address AS address_4, t0.additionalAddress AS additionalAddress_5, t0.zipCode AS zipCode_6, t0.city AS city_7, t0.latitude AS latitude_8, t0.longitude AS longitude_9, t0.capacity AS capacity_10, t0.annualOutputAverage AS annualOutputAverage_11, t0.buildYear AS buildYear_12, t0.investmentHeight AS investmentHeight_13, t0.meterPoint AS meterPoint_14, t0.statisticsUrl AS statisticsUrl_15, t0.public AS public_16, t0.co2 AS co2_17, t0.area AS area_18, t0.notes AS notes_19, t0.turnout AS turnout_20, t0.active AS active_21, t0.lotNumber AS lotNumber_22, t0.appliedAidAmount AS appliedAidAmount_23, t0.publicAidApplied AS publicAidApplied_24, t0.sponsor AS sponsor_25, t0.description AS description_26, t0.additional_unit AS additional_unit_27, t0.public_id AS public_id_28, t0.group_id AS group_id_29, t0.contact_id AS contact_id_30, t0.contactPerson_id AS contactPerson_id_31, t0.bankAccount_id AS bankAccount_id_32, t0.file_id AS file_id_33, t0.image_id AS image_id_34, t0.nation_id AS nation_id_35, t0.province_id AS province_id_36, t0.state_id AS state_id_37, t0.projectFund_id AS projectFund_id_38 FROM klimacent__project t0 WHERE t0.id = ?",
    "params": {
        "1": "199"
    },
    "types": {
        "1": 1
    }
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "tpoint\CoreBundle\EventListener\CustomStylesListener::onControllerEvent".
{
    "event": "kernel.controller",
    "listener": "tpoint\\CoreBundle\\EventListener\\CustomStylesListener::onControllerEvent"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "tpoint\TimemanagementBundle\EventListener\BuildTimeTrackerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "tpoint\\TimemanagementBundle\\EventListener\\BuildTimeTrackerListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
ERROR 17:40:19 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "tpoint\KlimacentBundle\Entity\Project object not found by the @ParamConverter annotation." at /var/www/html/vendor/sensio/framework-extra-bundle/src/Request/ParamConverter/DoctrineParamConverter.php line 107
{
    "exception": {}
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Liip\FunctionalTestBundle\EventListener\ExceptionListener::clearLastException".
{
    "event": "kernel.request",
    "listener": "Liip\\FunctionalTestBundle\\EventListener\\ExceptionListener::clearLastException"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Liip\FunctionalTestBundle\Validator\DataCollectingValidator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Liip\\FunctionalTestBundle\\Validator\\DataCollectingValidator::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TestSessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\TestSessionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\RequestLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\RequestLocaleListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\DoctrineExtensionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\DoctrineExtensionListener::onKernelRequest"
}
DEBUG 17:40:19 event Notified event "kernel.request" to listener "tpoint\CoreBundle\EventListener\DoctrineExtensionListener::onLateKernelRequest".
{
    "event": "kernel.request",
    "listener": "tpoint\\CoreBundle\\EventListener\\DoctrineExtensionListener::onLateKernelRequest"
}
DEBUG 17:40:19 doctrine Executing statement: SELECT c0_.name AS name_0, c0_.value AS value_1 FROM cssvariable c0_ WHERE c0_.name IN (?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT c0_.name AS name_0, c0_.value AS value_1 FROM cssvariable c0_ WHERE c0_.name IN (?, ?, ?, ?, ?, ?, ?)",
    "params": {
        "1": "background-color",
        "2": "body-color",
        "3": "menu-background-color",
        "4": "main-color",
        "5": "text-color",
        "6": "text-menu-color",
        "7": "inactive-color"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 17:40:19 doctrine Executing statement: SELECT c0_.id AS id_0, c0_.type AS type_1, c0_.path AS path_2, c0_.version AS version_3 FROM customlogo c0_ WHERE c0_.type IN (?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT c0_.id AS id_0, c0_.type AS type_1, c0_.path AS path_2, c0_.version AS version_3 FROM customlogo c0_ WHERE c0_.type IN (?, ?, ?)",
    "params": {
        "1": "main_logo_upper_left",
        "2": "upright_logo_login",
        "3": "background_logo"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2
    }
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "tpoint\CoreBundle\EventListener\CustomStylesListener::onControllerEvent".
{
    "event": "kernel.controller",
    "listener": "tpoint\\CoreBundle\\EventListener\\CustomStylesListener::onControllerEvent"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "tpoint\TimemanagementBundle\EventListener\BuildTimeTrackerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "tpoint\\TimemanagementBundle\\EventListener\\BuildTimeTrackerListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 17:40:19 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 17:40:19 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 17:40:19 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 Trace

NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
tpoint\KlimacentBundle\Entity\Project object not found by the @ParamConverter annotation.

  at vendor/sensio/framework-extra-bundle/src/Request/ParamConverter/DoctrineParamConverter.php:107
  at Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\DoctrineParamConverter->apply()
     (vendor/sensio/framework-extra-bundle/src/Request/ParamConverter/ParamConverterManager.php:84)
  at Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\ParamConverterManager->applyConverter()
     (vendor/sensio/framework-extra-bundle/src/Request/ParamConverter/ParamConverterManager.php:48)
  at Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\ParamConverterManager->apply()
     (vendor/sensio/framework-extra-bundle/src/EventListener/ParamConverterListener.php:72)
  at Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener->onKernelController()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:144)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:78)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:199)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:20)