SelectQuery::count PHP Method

count() public method

Countable interface doesn't break current \FluentPDO select query
public count ( ) : integer
return integer
    public function count()
    {
        $fpdo = clone $this;
        return (int) $fpdo->select(null)->select('COUNT(*)')->fetchColumn();
    }