Pop\Nav\Nav::getAcl PHP Метод

getAcl() публичный Метод

Get the Acl object
public getAcl ( ) : Acl
Результат Pop\Auth\Acl
    public function getAcl()
    {
        return $this->acl;
    }

Usage Example

Пример #1
0
 public function testSetAndGetAcl()
 {
     $n = new Nav();
     $acl = new Auth\Acl();
     $n->setAcl($acl);
     $this->assertInstanceOf('Pop\\Auth\\Acl', $n->getAcl());
 }