Skip to content

Commit

Permalink
Fix doc comment errors in Acl classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 5, 2014
1 parent 9c65337 commit 7058921
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Acl/AclInterface.php
Expand Up @@ -65,7 +65,7 @@ public function inherit($aro, $aco, $action = "*");
/**
* Initialization method for the Acl implementation
*
* @param AclComponent $component
* @param Component $component The AclComponent instance.
* @return void
*/
public function initialize(Component $component);
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Acl/DbAcl.php
Expand Up @@ -53,7 +53,7 @@ public function __construct() {
/**
* Initializes the containing component and sets the Aro/Aco objects to it.
*
* @param AclComponent $component
* @param AclComponent $component The AclComponent instance.
* @return void
*/
public function initialize(Component $component) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Acl/IniAcl.php
Expand Up @@ -43,7 +43,7 @@ class IniAcl extends Object implements AclInterface {
/**
* Initialize method
*
* @param Component $component
* @param Component $component The AclComponent instance.
* @return void
*/
public function initialize(Component $component) {
Expand Down

0 comments on commit 7058921

Please sign in to comment.