blob: 430588b0a382d0c495f140dd2eaf0c3091eaf437 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace LdapRecord\Models\DirectoryServer;
4
5class User extends Entry
6{
7 /**
8 * The object classes of the LDAP model.
9 *
10 * @var array
11 */
12 public static $objectClasses = [
13 'top',
14 'nsPerson',
15 'nsAccount',
16 'nsOrgPerson',
17 'posixAccount',
18 ];
19}