composer package updates
[openemr.git] / vendor / adldap2 / adldap2 / docs / models / container.md
blob767bb3512eeb368a4ac7460065ea00a2a40fb3d6
1 # The Container Model
3 > **Note**: This model contains the trait `HasDescription` & `HasCriticalSystemObject`.
4 > For more information, visit the documentation:
5
6 > [HasDescription](traits/has-description.md),
7 > [HasCriticalSystemObject](traits/has-critical-system-object.md),
9 ## Creation
11 ```php
12 // Adldap\Models\Container
13 $container = $provider->make()->container([
14     'cn' => 'VPN Users',
15 ]);
16 ```
18 ## List of Available 'Getter' Methods:
20 The `Container` model contains only one unique method.
22 ```php
23 $flags = $container->getSystemFlags();
24 ```