Skip to content

Commit

Permalink
Rename urlManager
Browse files Browse the repository at this point in the history
  • Loading branch information
Max committed Mar 17, 2016
1 parent 366cc2b commit 5cdcbd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mindy/Application/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function processRequest()
*/
public function parseRoute()
{
return $this->urlmanager->parseUrl($this->request);
return $this->urlManager->parseUrl($this->request);
}

/**
Expand Down Expand Up @@ -194,7 +194,7 @@ public function createController($route, $owner = null)
protected function parseActionParams($pathInfo)
{
if (($pos = strpos($pathInfo, '/')) !== false) {
$manager = $this->getUrlManager();
$manager = $this->urlManager;
$manager->parsePathInfo((string)substr($pathInfo, $pos + 1));
$actionID = substr($pathInfo, 0, $pos);
return $manager->caseSensitive ? $actionID : strtolower($actionID);
Expand Down

0 comments on commit 5cdcbd7

Please sign in to comment.