Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ MethodNotAllowedHttpException
- throw new NotFoundHttpException($message, $e);
- } catch (MethodNotAllowedException $e) {
- $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getPathInfo(), implode(', ', $e->getAllowedMethods()));
- throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
- }
- }
- public function onKernelException(GetResponseForExceptionEvent $event)
- {
- * @param object $event The event object to pass to the event handlers/listeners
- */
- protected function callListeners(iterable $listeners, string $eventName, $event)
- {
- if ($event instanceof Event) {
- $this->doDispatch($listeners, $eventName, $event);
- return;
- }
- $stoppable = $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
- public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
- {
- $request->headers->set('X-Php-Ob-Level', ob_get_level());
- try {
- return $this->handleRaw($request, $type);
- } catch (\Exception $e) {
- if ($e instanceof RequestExceptionInterface) {
- $e = new BadRequestHttpException($e->getMessage(), $e);
- }
- if (false === $catch) {
Symfony\Component\Routing\Exception\ MethodNotAllowedException
- $allow = $allowSchemes = [];
- if ($ret = $this->doMatch($pathinfo, $allow, $allowSchemes)) {
- return $ret;
- }
- if ($allow) {
- throw new MethodNotAllowedException(array_keys($allow));
- }
- if (!$this instanceof RedirectableUrlMatcherInterface) {
- throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
- }
- if (!\in_array($this->context->getMethod(), ['HEAD', 'GET'], true)) {
- // 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());
- }
- if (null !== $this->logger) {
- * @param object $event The event object to pass to the event handlers/listeners
- */
- protected function callListeners(iterable $listeners, string $eventName, $event)
- {
- if ($event instanceof Event) {
- $this->doDispatch($listeners, $eventName, $event);
- return;
- }
- $stoppable = $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
- public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
- {
- $request->headers->set('X-Php-Ob-Level', ob_get_level());
- try {
- return $this->handleRaw($request, $type);
- } catch (\Exception $e) {
- if ($e instanceof RequestExceptionInterface) {
- $e = new BadRequestHttpException($e->getMessage(), $e);
- }
- if (false === $catch) {
Stack Traces 2
| [2/2] MethodNotAllowedHttpException | 
|---|
| Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException:
No route found for "GET /member/reports/working-hours/assign-agent": Method Not Allowed (Allow: POST)
  at vendor/symfony/http-kernel/EventListener/RouterListener.php:142
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:260)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:235)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:127)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)
 | 
| [1/2] MethodNotAllowedException | 
|---|
| Symfony\Component\Routing\Exception\MethodNotAllowedException:
  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:42
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:108)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:278)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:114)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:260)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:235)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:127)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)
 |