phpldapadmin/app/Classes/LDAP/Attribute/Internal.php

13 lines
222 B
PHP
Raw Normal View History

<?php
namespace App\Classes\LDAP\Attribute;
use App\Classes\LDAP\Attribute;
/**
* Represents an attribute whose values are internal
*/
abstract class Internal extends Attribute
{
2023-03-02 03:41:38 +00:00
protected bool $is_internal = TRUE;
}