Skip to content
This repository has been archived by the owner on May 16, 2018. It is now read-only.

Corrected type of property _currentRoute #434

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/Zend/Controller/Router/Rewrite.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Zend_Controller_Router_Rewrite extends Zend_Controller_Router_Abstract
/**
* Currently matched route
*
* @var Zend_Controller_Router_Route_Interface
* @var string
*/
protected $_currentRoute = null;

Expand Down Expand Up @@ -340,7 +340,7 @@ public function getCurrentRoute()
* Retrieve a name of currently matched route
*
* @throws Zend_Controller_Router_Exception
* @return Zend_Controller_Router_Route_Interface Route object
* @return string
*/
public function getCurrentRouteName()
{
Expand Down