blob: 7ae0a37a4ef1ad21a113689b6b0d4d15d57aa70e [file] [log] [blame]
<?php
namespace LdapRecord\Models\OpenLDAP;
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';
}
}