Exceptions
Exception
ErrorException
Show exception properties
ErrorException {#764 #severity: E_WARNING }
in
src/Controller/Api/VeriffController.php
(line 60)
): JsonResponse
{
$data = json_decode($request->getContent(), true);
if (isset($data['status']) && $data['status'] === 'success') {
$sessionId = $data['sessionId'];
$dataPerson['veriff_status'] = $data['data']['verification']['decision'];
$dataP = $data['data']['verification']['person'];
$dataPerson['session_id'] = $sessionId;
$dataPerson['fname'] = $dataP['firstName']['value'];
$dataPerson['lname'] = $dataP['lastName']['value'];
in
vendor/symfony/http-kernel/HttpKernel.php
->
callback
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?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 04:21:54 | deprecation |
Deprecated: Creation of dynamic property App\EventListener\AuthListener::$requestStack is deprecated { "exception": {} } |
INFO 04:21:54 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://break-dev.com/_profiler/latest?type=request", "method": "GET" } |
INFO 04:21:54 | deprecation |
Deprecated: str_starts_with(): Passing null to parameter #1 ($haystack) of type string is deprecated { "exception": {} } |
INFO 04:21:54 | deprecation |
Deprecated: str_starts_with(): Passing null to parameter #1 ($haystack) of type string is deprecated { "exception": {} } |
Stack Trace
ErrorException
|
---|
ErrorException: Warning: Undefined array key "sessionId" at src/Controller/Api/VeriffController.php:60 at App\Controller\Api\VeriffController->callback() (vendor/symfony/http-kernel/HttpKernel.php:183) 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('/var/www/dev/break/vendor/autoload_runtime.php') (public/index.php:5) |