Exceptions
Exception
League\OAuth2\Client\Provider\Exception\ IdentityProviderException
Show exception properties
League\OAuth2\Client\Provider\Exception\IdentityProviderException {#763 #response: array:7 [ "error" => "invalid_grant" "error_description" => "AADSTS9002313: Invalid request. Request is malformed or invalid. Trace ID: af234617-ef53-4941-a6db-014e745e6b00 Correlation ID: 0b304639-aca0-49e2-86dc-9513ed417e42 Timestamp: 2025-08-10 03:41:01Z" "error_codes" => array:1 [ 0 => 9002313 ] "timestamp" => "2025-08-10 03:41:01Z" "trace_id" => "af234617-ef53-4941-a6db-014e745e6b00" "correlation_id" => "0b304639-aca0-49e2-86dc-9513ed417e42" "error_uri" => "https://login.microsoftonline.com/error?code=9002313" ] }
}
$code = $this->responseCode && !empty($data[$this->responseCode])? $data[$this->responseCode] : 0;
if (!is_int($code)) {
$code = intval($code);
}
throw new IdentityProviderException($error, $code, $data);
}
}
/**
* @inheritdoc
in
vendor/league/oauth2-client/src/Provider/AbstractProvider.php
->
checkResponse
(line 740)
$response = $e->getResponse();
}
$parsed = $this->parseResponse($response);
$this->checkResponse($response, $parsed);
return $parsed;
}
/**
in
vendor/league/oauth2-client/src/Provider/AbstractProvider.php
->
getParsedResponse
(line 646)
$params['code_verifier'] = $this->pkceCode;
}
$params = $grant->prepareRequestParameters($params, $options);
$request = $this->getAccessTokenRequest($params);
$response = $this->getParsedResponse($request);
if (false === is_array($response)) {
throw new UnexpectedValueException(
'Invalid response received from Authorization Server. Expected JSON.'
);
}
in
vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php
->
getAccessToken
(line 303)
$span->addEvent(self::REQUEST_NEW_TOKEN_EVENT);
if ($this->tokenRequestContext->isCAEEnabled()) {
$params = $this->mergeClaims($params, self::CP1_CLAIM);
}
// @phpstan-ignore-next-line
return $this->oauthProvider->getAccessToken($this->tokenRequestContext->getGrantType(), $params);
}
/**
* Attempts to get a new access token using the refresh token + claims.
* If that fails, call the redirect callback if it's available. Otherwise, fail with an exception containing the
in
vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php
->
requestNewToken
(line 169)
$span->setAttribute(self::TOKEN_GET_RESULT_KEY, true);
return new FulfilledPromise($refreshedToken->getToken());
}
}
}
$token = $this->requestNewToken($params, $span);
$this->cacheToken($token, $span);
$result = new FulfilledPromise($token->getToken());
$span->setAttribute(self::TOKEN_GET_RESULT_KEY, true);
$span->setStatus(StatusCode::STATUS_OK);
return $result;
in
vendor/microsoft/kiota-abstractions/src/Authentication/BaseBearerTokenAuthenticationProvider.php
->
getAuthorizationTokenAsync
(line 75)
$request->getHeaders()->remove(self::$authorizationHeaderKey);
}
if (!$request->getHeaders()->contains(self::$authorizationHeaderKey)) {
return $this->getAccessTokenProvider()
->getAuthorizationTokenAsync($request->getUri(), $additionalAuthenticationContext)
->then(function ($token) use ($request) {
if ($token) {
$request->addHeader(self::$authorizationHeaderKey, "Bearer {$token}");
}
return $request;
in
vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php
->
authenticateRequest
(line 541)
$span->setAttribute('com.microsoft.kiota.authentication.is_url_valid', true);
} catch (Throwable $ex){
$span->setAttribute('com.microsoft.kiota.authentication.is_url_valid', false);
}
$additionalAuthContext = $claims ? ['claims' => $claims] : [];
$request = $this->authenticationProvider->authenticateRequest($requestInfo, $additionalAuthContext);
$finalResult = $request->then(
function () use ($requestInfo, &$httpResponseSpan) {
$psrRequest = $this->getPsrRequestFromRequestInformation($requestInfo, $httpResponseSpan);
$httpResponseSpan->setStatus(StatusCode::STATUS_OK, 'Request Information Success');
return $this->guzzleClient->send($psrRequest, $requestInfo->getRequestOptions());
in
vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php
->
getHttpResponseMessage
(line 144)
{
$span = $this->startTracingSpan($requestInfo, 'sendAsync');
$scope = $span->activate();
try {
$responseMessage = $this->getHttpResponseMessage($requestInfo, '', $span);
$finalResponse = $responseMessage->then(
function (ResponseInterface $result) use ($targetCallable, $requestInfo, $errorMappings, &$span) {
$this->setHttpResponseAttributesInSpan($span, $result);
$response = $this->tryHandleResponse($requestInfo, $result, $errorMappings, $span);
if ($response !== null) {
* @return Promise<User|null>
* @throws Exception
*/
public function get(?MeRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise {
$requestInfo = $this->toGetRequestInformation($requestConfiguration);
return $this->requestAdapter->sendAsync($requestInfo, [User::class, 'createFromDiscriminatorValue'], null);
}
/**
* @param MeRequestBuilderGetRequestConfiguration|null $requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return RequestInformation
$authProvider = new PhpLeagueAuthenticationProvider($tokenRequestContext, $scopes, $allowedHosts);
$requestAdapter = new GuzzleRequestAdapter($authProvider);
$client = new GraphApiClient($requestAdapter);
$me = $client->me()->get()->wait();
$extraData = $me->getAdditionalData();
$email = $extraData['mail'];
$parts = explode("@", $email);
$domain = $parts[1];
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php
->
authenticate
(line 74)
public function authenticate(Request $request): Passport
{
$startTime = microtime(true);
try {
$this->passport = $this->authenticator->authenticate($request);
} finally {
$this->duration = microtime(true) - $startTime;
}
return $this->passport;
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
authenticate
(line 185)
$passport = null;
$previousToken = $this->tokenStorage->getToken();
try {
// get the passport from the Authenticator
$passport = $authenticator->authenticate($request);
// check the passport (e.g. password checking)
$event = new CheckPassportEvent($authenticator, $passport);
$this->eventDispatcher->dispatch($event);
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 167)
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
continue;
}
$response = $this->executeAuthenticator($authenticator, $request);
if (null !== $response) {
$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
return $response;
}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticators
(line 149)
if (!$authenticators) {
return null;
}
return $this->executeAuthenticators($authenticators, $request);
}
/**
* @param AuthenticatorInterface[] $authenticators
*/
in
vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php
->
authenticateRequest
(line 38)
}
public function authenticate(RequestEvent $event): void
{
$request = $event->getRequest();
$response = $this->authenticatorManager->authenticateRequest($request);
if (null === $response) {
return;
}
$event->setResponse($response);
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php
->
authenticate
(line 58)
return $supports;
}
public function authenticate(RequestEvent $event): void
{
$this->authenticationManagerListener->authenticate($event);
}
public function getAuthenticatorManagerListener(): AuthenticatorManagerListener
{
return $this->authenticationManagerListener;
in
vendor/symfony/security-bundle/Debug/WrappedLazyListener.php
->
authenticate
(line 46)
public function authenticate(RequestEvent $event): void
{
$startTime = microtime(true);
try {
$this->listener->authenticate($event);
} catch (LazyResponseException $e) {
$this->response = $e->getResponse();
throw $e;
} finally {
in
vendor/symfony/security-bundle/Security/LazyFirewallContext.php
->
authenticate
(line 61)
}
}
if (!$lazy) {
foreach ($listeners as $listener) {
$listener($event);
if ($event->hasResponse()) {
return;
}
}
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 91)
$requestListeners[] = $wrappedListener;
}
}
foreach ($requestListeners as $listener) {
$listener($event);
if ($event->hasResponse()) {
break;
}
}
in
vendor/symfony/security-http/Firewall.php
->
callListeners
(line 92)
if (null !== $logoutListener) {
yield $logoutListener;
}
};
$this->callListeners($event, $authenticationListeners());
}
/**
* @return void
*/
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 05:55:52 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "435ad2" }, "request_uri": "https://unab.social/_profiler/435ad2", "method": "GET" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". { "event": "kernel.request", "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 05:55:52 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments" } |
DEBUG 05:55:52 | 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
IdentityProviderException
|
---|
League\OAuth2\Client\Provider\Exception\IdentityProviderException: invalid_grant at vendor/league/oauth2-client/src/Provider/GenericProvider.php:236 at League\OAuth2\Client\Provider\GenericProvider->checkResponse() (vendor/league/oauth2-client/src/Provider/AbstractProvider.php:740) at League\OAuth2\Client\Provider\AbstractProvider->getParsedResponse() (vendor/league/oauth2-client/src/Provider/AbstractProvider.php:646) at League\OAuth2\Client\Provider\AbstractProvider->getAccessToken() (vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:303) at Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->requestNewToken() (vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:169) at Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->getAuthorizationTokenAsync() (vendor/microsoft/kiota-abstractions/src/Authentication/BaseBearerTokenAuthenticationProvider.php:75) at Microsoft\Kiota\Abstractions\Authentication\BaseBearerTokenAuthenticationProvider->authenticateRequest() (vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:541) at Microsoft\Kiota\Http\GuzzleRequestAdapter->getHttpResponseMessage() (vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:144) at Microsoft\Kiota\Http\GuzzleRequestAdapter->sendAsync() (src/Util/MSClient/Me/MeRequestBuilder.php:39) at App\Util\MSClient\Me\MeRequestBuilder->get() (src/Security/UnabAuthenticator.php:80) at App\Security\UnabAuthenticator->authenticate() (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:74) at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->authenticate() (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:185) at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator() (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167) at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators() (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149) at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest() (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38) at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate() (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58) at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate() (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46) at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate() (vendor/symfony/security-bundle/Security/LazyFirewallContext.php:61) at Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->__invoke() (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:91) at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners() (vendor/symfony/security-http/Firewall.php:92) at Symfony\Component\Security\Http\Firewall->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:159) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:182) at Symfony\Component\HttpKernel\Kernel->handle() (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/unabsocial/app/vendor/autoload_runtime.php') (public/index.php:5) |