From 00af8c715f8f20c61d12977ee3b121ef88fb914a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 5 Aug 2011 09:20:26 -0500 Subject: [PATCH] Added comments to $route->handler(). --- system/routing/route.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/routing/route.php b/system/routing/route.php index 1dbf1709..8b88196f 100644 --- a/system/routing/route.php +++ b/system/routing/route.php @@ -82,6 +82,9 @@ public function call() /** * Extract the route function from the route. * + * If a "do" index is specified on the callback, that is the handler. + * Otherwise, we will return the first callable array value. + * * @return Closure */ private function handler()