Add PHPDoc to ActionController::$params

This commit is contained in:
Eric Lippmann 2015-04-07 12:25:46 +02:00
parent 002e793a53
commit dfd8c91827
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ class ActionController extends Zend_Controller_Action
*/
private $auth;
/**
* URL parameters
*
* @var UrlParams
*/
protected $params;
/**