LdapTools\Query\Builder\FilterBuilder::bitwiseOr PHP Method

bitwiseOr() public method

Perform a bitwise OR operation against an attribute.
public bitwiseOr ( string $attribute, integer $value ) : MatchingRule
$attribute string
$value integer
return LdapTools\Query\Operator\MatchingRule
    public function bitwiseOr($attribute, $value)
    {
        return new MatchingRule($attribute, MatchingRuleOid::BIT_OR, $value);
    }