LdapTools\AttributeConverter\ConvertBoolean::toLdap PHP Метод

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

public toLdap ( $value )
    public function toLdap($value)
    {
        return (bool) $value ? 'TRUE' : 'FALSE';
    }
ConvertBoolean