Skip to content

Commit

Permalink
Removed getNamespace
Browse files Browse the repository at this point in the history
  • Loading branch information
VeeeneX committed Aug 11, 2015
1 parent ac2e374 commit f361c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function run($callable, $params = array())
if ($isArray) {

/* Assign variables for callable */
$controllerClass = self::getNamespace($callable[0]);
$controllerClass = $callable[0];
$controllermethod = $callable[1];

/* Create callable */
Expand Down Expand Up @@ -88,7 +88,7 @@ public function run($callable, $params = array())

$Instance->Response->content = $this->Resolver->callMethod($controllerClass, "render");
$Instance->Response->send();

$this->Resolver->callMethod($controllerClass, "after");
}

Expand Down

0 comments on commit f361c6b

Please sign in to comment.