LdapTools\Utilities\TSProperty::__construct PHP Метод

__construct() публичный Метод

public __construct ( string | null $value = null )
$value string | null Pass binary TSProperty data to construct its object representation.
    public function __construct($value = null)
    {
        if ($value) {
            $this->decode(bin2hex($value));
        }
    }