Skip to content

Commit

Permalink
correct variable to unify it across the core.
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Apr 3, 2014
1 parent 10377c6 commit 7547370
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Controller/Component/Auth/CrudAuthorize.php
Expand Up @@ -39,10 +39,10 @@ class CrudAuthorize extends BaseAuthorize {
* Sets up additional actionMap values that match the configured `Routing.prefixes`.
*
* @param ComponentRegistry $registry The component registry from the controller.
* @param array $configs An array of configs. This class does not use any configs.
* @param array $config An array of config. This class does not use any config.
*/
public function __construct(ComponentRegistry $registry, $configs = array()) {
parent::__construct($registry, $configs);
public function __construct(ComponentRegistry $registry, $config = array()) {
parent::__construct($registry, $config);
$this->_setPrefixMappings();
}

Expand Down

0 comments on commit 7547370

Please sign in to comment.