Phpmig\Adapter\PDO\SqlOci::fetchAll PHP Method

fetchAll() public method

Fetch all
public fetchAll ( ) : array
return array
    public function fetchAll()
    {
        $sql = 'SELECT "version" FROM "' . $this->tableName . '" ORDER BY "version" ASC';
        return $this->connection->query($sql, PDO::FETCH_COLUMN, 0)->fetchAll();
    }