From f810f6a94ef7e050b96b90c7b07b4e306b53b856 Mon Sep 17 00:00:00 2001 From: Guilhem N Date: Wed, 30 Nov 2016 14:17:42 +0100 Subject: [PATCH] Add a note about an empty catch --- Describer/RouteDescriber.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Describer/RouteDescriber.php b/Describer/RouteDescriber.php index f8e884e..bba8887 100644 --- a/Describer/RouteDescriber.php +++ b/Describer/RouteDescriber.php @@ -107,6 +107,8 @@ class RouteDescriber implements DescriberInterface try { return new \ReflectionMethod($class, $method); } catch (\ReflectionException $e) { + // In case we can't reflect the controller, we just + // ignore the route } } }