composer package updates
[openemr.git] / vendor / adldap2 / adldap2 / src / Models / OrganizationalUnit.php
blob7a827b744790012320f636ec8bd50191403d7ec6
1 <?php
3 namespace Adldap\Models;
5 use Adldap\Models\Concerns\HasDescription;
7 /**
8 * Class OrganizationalUnit
10 * Represents an LDAP organizational unit.
12 * @package Adldap\Models
14 class OrganizationalUnit extends Entry
16 use HasDescription;
18 /**
19 * Retrieves the organization units OU attribute.
21 * @return string
23 public function getOu()
25 return $this->getFirstAttribute($this->schema->organizationalUnitShort());