Difference between array('Acl' => array('type' => 'requester')) and array('Acl' => 'requester') in C
- by Jonnie
I'm following the ACL tutorial for CakePHP 1.3 and I was wondering if there is a functional difference between declaring a behavior like this:
var $actsAs = array('Acl' => 'requester');
and like this:
var $actsAs = array('Acl' => array('type' => 'requester'));