phpDataMapper_Query::first PHP Method

first() public method

Return the first entity matched by the query
public first ( ) : mixed
return mixed phpDataMapper_Entity on success, boolean false on failure
    public function first()
    {
        $result = $this->limit(1)->execute();
        return $result !== false ? $result->first() : false;
    }