Adldap\Models\ModelNotFoundException::setQuery PHP Method

setQuery() public method

Sets the query that was used.
public setQuery ( string $query, string $baseDn ) : ModelNotFoundException
$query string
$baseDn string
return ModelNotFoundException
    public function setQuery($query, $baseDn)
    {
        $this->query = $query;
        $this->baseDn = $baseDn;
        $this->message = "No LDAP query results for filter: [{$query}] in: [{$baseDn}]";
        return $this;
    }
ModelNotFoundException