Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2637 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {
$message .= sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$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 127)
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 154)
*/
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 185)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/baldinof/roadrunner-bundle/src/Http/KernelHandler.php
->
handle
(line 44)
$symfonyRequest = $request;
$this->handleBasicAuth($symfonyRequest);
$symfonyResponse = $this->kernel->handle($symfonyRequest);
yield $symfonyResponse;
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($symfonyRequest, $symfonyResponse);
KernelHandler->handle()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 63)
public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = true): Response
{
if ($this->middlewares->isEmpty()) {
$gen = $this->handler->handle($request);
return $this->getResponse($gen, \get_class($this->handler).'::handle()');
}
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
in
vendor/baldinof/roadrunner-bundle/src/Integration/Doctrine/DoctrineORMMiddleware.php
->
handle
(line 62)
'connection_name' => $connectionServiceName,
]);
}
}
yield $next->handle($request);
$managerNames = $this->managerRegistry->getManagerNames();
foreach ($managerNames as $managerName) {
if (!$this->container->initialized($managerName)) {
DoctrineORMMiddleware->process()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 71)
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
$gen = $middleware->process($request, $this);
return $this->getResponse($gen, \get_class($middleware).'::process()');
}
public function close(): void
{
foreach ($this->iterators as $gen) {
in
vendor/baldinof/roadrunner-bundle/src/Integration/Sentry/SentryMiddleware.php
->
handle
(line 27)
public function process(Request $request, HttpKernelInterface $next): \Iterator
{
$this->hub->pushScope();
try {
yield $next->handle($request);
} finally {
$result = $this->hub->getClient()?->flush();
if (class_exists(PromiseInterface::class) && $result instanceof PromiseInterface) {
$result->wait(false);
}
SentryMiddleware->process()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 71)
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
$gen = $middleware->process($request, $this);
return $this->getResponse($gen, \get_class($middleware).'::process()');
}
public function close(): void
{
foreach ($this->iterators as $gen) {
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
handle
(line 33)
{
$middlewares = clone $this->middlewares;
$runner = new Runner($middlewares, $this->kernelHandler);
yield $runner->handle($request);
$runner->close();
}
public function pipe(MiddlewareInterface $middleware): void
MiddlewareStack->handle()
in
vendor/baldinof/roadrunner-bundle/src/Worker/HttpWorker.php
->
current
(line 103)
$sent = false;
try {
$gen = $this->dependencies->getRequestHandler()->handle($request);
/** @var Response $response */
$response = $gen->current();
$this->httpFoundationWorker->respond($response);
$sent = true;
in
vendor/baldinof/roadrunner-bundle/src/Runtime/Runner.php
->
start
(line 33)
error_log(sprintf('Missing RR worker implementation for %s mode', $this->mode));
return 1;
}
$worker->start();
return 0;
}
}
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 static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {
goto redirect_scheme;
}
}
throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
}
private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
{
$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 93)
public function matchRequest(Request $request): array
{
$this->request = $request;
$ret = $this->match($request->getPathInfo());
$this->request = null;
return $ret;
}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 190)
if (!$matcher instanceof RequestMatcherInterface) {
// fallback to the default UrlMatcherInterface
return $matcher->match($request->getPathInfo());
}
return $matcher->matchRequest($request);
}
/**
* Gets the UrlMatcher or RequestMatcher instance associated with this Router.
*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 105)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$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 127)
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 154)
*/
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 185)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/baldinof/roadrunner-bundle/src/Http/KernelHandler.php
->
handle
(line 44)
$symfonyRequest = $request;
$this->handleBasicAuth($symfonyRequest);
$symfonyResponse = $this->kernel->handle($symfonyRequest);
yield $symfonyResponse;
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($symfonyRequest, $symfonyResponse);
KernelHandler->handle()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 63)
public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = true): Response
{
if ($this->middlewares->isEmpty()) {
$gen = $this->handler->handle($request);
return $this->getResponse($gen, \get_class($this->handler).'::handle()');
}
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
in
vendor/baldinof/roadrunner-bundle/src/Integration/Doctrine/DoctrineORMMiddleware.php
->
handle
(line 62)
'connection_name' => $connectionServiceName,
]);
}
}
yield $next->handle($request);
$managerNames = $this->managerRegistry->getManagerNames();
foreach ($managerNames as $managerName) {
if (!$this->container->initialized($managerName)) {
DoctrineORMMiddleware->process()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 71)
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
$gen = $middleware->process($request, $this);
return $this->getResponse($gen, \get_class($middleware).'::process()');
}
public function close(): void
{
foreach ($this->iterators as $gen) {
in
vendor/baldinof/roadrunner-bundle/src/Integration/Sentry/SentryMiddleware.php
->
handle
(line 27)
public function process(Request $request, HttpKernelInterface $next): \Iterator
{
$this->hub->pushScope();
try {
yield $next->handle($request);
} finally {
$result = $this->hub->getClient()?->flush();
if (class_exists(PromiseInterface::class) && $result instanceof PromiseInterface) {
$result->wait(false);
}
SentryMiddleware->process()
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
current
(line 85)
private function getResponse(\Iterator $iterator, string $caller): Response
{
$this->iterators->push($iterator);
$resp = $iterator->current();
if (!($resp instanceof Response)) {
throw new \UnexpectedValueException(sprintf("'%s' first yield should be a '%s' object, '%s' given", $caller, Response::class, \is_object($resp) ? \get_class($resp) : \gettype($resp)));
}
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
getResponse
(line 71)
/** @var MiddlewareInterface $middleware */
$middleware = $this->middlewares->shift();
$gen = $middleware->process($request, $this);
return $this->getResponse($gen, \get_class($middleware).'::process()');
}
public function close(): void
{
foreach ($this->iterators as $gen) {
in
vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php
->
handle
(line 33)
{
$middlewares = clone $this->middlewares;
$runner = new Runner($middlewares, $this->kernelHandler);
yield $runner->handle($request);
$runner->close();
}
public function pipe(MiddlewareInterface $middleware): void
MiddlewareStack->handle()
in
vendor/baldinof/roadrunner-bundle/src/Worker/HttpWorker.php
->
current
(line 103)
$sent = false;
try {
$gen = $this->dependencies->getRequestHandler()->handle($request);
/** @var Response $response */
$response = $gen->current();
$this->httpFoundationWorker->respond($response);
$sent = true;
in
vendor/baldinof/roadrunner-bundle/src/Runtime/Runner.php
->
start
(line 33)
error_log(sprintf('Missing RR worker implementation for %s mode', $this->mode));
return 1;
}
$worker->start();
return 0;
}
}
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 static function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://dev.revpu.sh/info" (from "http://dev.revpu.sh/info") at vendor/symfony/http-kernel/EventListener/RouterListener.php:127 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) 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:127) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:154) 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:185) at Symfony\Component\HttpKernel\Kernel->handle() (vendor/baldinof/roadrunner-bundle/src/Http/KernelHandler.php:44) at Baldinof\RoadRunnerBundle\Http\KernelHandler->handle() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:63) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Integration/Doctrine/DoctrineORMMiddleware.php:62) at Baldinof\RoadRunnerBundle\Integration\Doctrine\DoctrineORMMiddleware->process() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:71) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Integration/Sentry/SentryMiddleware.php:27) at Baldinof\RoadRunnerBundle\Integration\Sentry\SentryMiddleware->process() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:71) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:33) at Baldinof\RoadRunnerBundle\Http\MiddlewareStack->handle() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Worker/HttpWorker.php:103) at Baldinof\RoadRunnerBundle\Worker\HttpWorker->start() (vendor/baldinof/roadrunner-bundle/src/Runtime/Runner.php:33) at Baldinof\RoadRunnerBundle\Runtime\Runner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/dev.revpu.sh/vendor/autoload_runtime.php') (public/index.php:5) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/info/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match() (vendor/symfony/routing/Matcher/UrlMatcher.php:93) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest() (vendor/symfony/routing/Router.php:190) at Symfony\Component\Routing\Router->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:105) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) 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:127) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:154) 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:185) at Symfony\Component\HttpKernel\Kernel->handle() (vendor/baldinof/roadrunner-bundle/src/Http/KernelHandler.php:44) at Baldinof\RoadRunnerBundle\Http\KernelHandler->handle() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:63) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Integration/Doctrine/DoctrineORMMiddleware.php:62) at Baldinof\RoadRunnerBundle\Integration\Doctrine\DoctrineORMMiddleware->process() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:71) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Integration/Sentry/SentryMiddleware.php:27) at Baldinof\RoadRunnerBundle\Integration\Sentry\SentryMiddleware->process() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:85) at Baldinof\RoadRunnerBundle\Http\Runner->getResponse() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:71) at Baldinof\RoadRunnerBundle\Http\Runner->handle() (vendor/baldinof/roadrunner-bundle/src/Http/MiddlewareStack.php:33) at Baldinof\RoadRunnerBundle\Http\MiddlewareStack->handle() at Generator->current() (vendor/baldinof/roadrunner-bundle/src/Worker/HttpWorker.php:103) at Baldinof\RoadRunnerBundle\Worker\HttpWorker->start() (vendor/baldinof/roadrunner-bundle/src/Runtime/Runner.php:33) at Baldinof\RoadRunnerBundle\Runtime\Runner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/dev.revpu.sh/vendor/autoload_runtime.php') (public/index.php:5) |