blob: 80aae9f4728fa9a2e0fb2bde1ba6d6c5cd01ec17 [file] [log] [blame]
<?php
namespace LdapRecord\Models\ActiveDirectory;
class OrganizationalUnit extends Entry
{
/**
* The object classes of the LDAP model.
*
* @var array
*/
public static $objectClasses = [
'top',
'organizationalunit',
];
/**
* Get the creatable RDN attribute name.
*
* @return string
*/
public function getCreatableRdnAttribute()
{
return 'ou';
}
}