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

endsWith() public method

Places a wildcard at the beginning of the search term.
public endsWith ( $attribute, $value ) : Wildcard
$attribute
$value
return LdapTools\Query\Operator\Wildcard
    public function endsWith($attribute, $value)
    {
        return new Wildcard($attribute, Wildcard::ENDS_WITH, $value);
    }