LdapTools\Connection\LdapControl::__construct PHP Method

__construct() public method

public __construct ( string $oid, boolean $criticality = false, mixed | null $value = null )
$oid string
$criticality boolean
$value mixed | null
    public function __construct($oid, $criticality = false, $value = null)
    {
        $this->oid = $oid;
        $this->criticality = (bool) $criticality;
        $this->value = $value;
    }