aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAVACL/MockACLNode.php
blob: 2d9744e293fa36c81b0516a83264f69ee57a3cfd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                       





                                                    
                                                  










































                                         
<?php

namespace Sabre\DAVACL;

use Sabre\DAV;

class MockACLNode extends DAV\Node implements IACL {

    public $name;
    public $acl;

    function __construct($name, array $acl = []) {

        $this->name = $name;
        $this->acl = $acl;

    }

    function getName() {

        return $this->name;

    }

    function getOwner() {

        return null;

    }

    function getGroup() {

        return null;

    }

    function getACL() {

        return $this->acl;

    }

    function setACL(array $acl) {

        $this->acl = $acl;

    }

    function getSupportedPrivilegeSet() {

        return null;

    }

}