/** * returns Authorizator to be used for authorization, creates one * if it's not instantiated yet. * @return Authorizator * @author kstep */ protected function getAuthorizator() { if (!$this->_authorizator) { $this->_authorizator = Authorizator::create($this->getStorage()); } return $this->_authorizator; }
public function __construct(Storage $store, array $rules = array()) { $this->_rules = $rules; parent::__construct($store); }
public function __construct(Storage_Ldap $store) { parent::__construct($store); }