From ff3196db4b92562956d8b415fff220e19c31405d Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 22 May 2015 02:56:06 +0200 Subject: [PATCH] Fix a typo --- framework/core/src/Http/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Http/Router.php b/framework/core/src/Http/Router.php index 9615f3839..791db3264 100644 --- a/framework/core/src/Http/Router.php +++ b/framework/core/src/Http/Router.php @@ -71,7 +71,7 @@ class Router $routeData = $this->routeParser->parse($path); $this->dataGenerator->addRoute($method, $routeData, $handler); - $routeDate['method'] = $method; + $routeData['method'] = $method; $this->reverse[$name] = $routeData; return $this;