blob: faaf1a114fd7c1adcba6ae0125f65be814e0add9 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Adldap\Models;
4
5/**
6 * Class Container.
7 *
8 * Represents an LDAP container.
9 */
10class Container extends Entry
11{
12 use Concerns\HasDescription;
13 use Concerns\HasCriticalSystemObject;
14
15 /**
16 * Returns the containers system flags integer.
17 *
18 * An integer value that contains flags that define additional properties of the class.
19 *
20 * @link https://msdn.microsoft.com/en-us/library/ms680022(v=vs.85).aspx
21 *
22 * @return string
23 */
24 public function getSystemFlags()
25 {
26 return $this->getFirstAttribute($this->schema->systemFlags());
27 }
28}