aboutsummaryrefslogtreecommitdiff
path: root/app/Models/StatsDAOSQLite.php
blob: c923e5fd0d360e6a249dae7f08e6317ec172df83 (plain)
1
2
3
4
5
6
7
8
9
<?php

class FreshRSS_StatsDAOSQLite extends FreshRSS_StatsDAO {

	public function calculateEntryCount() {
		return $this->convertToSerie(array());	//TODO: Implement 30-day statistics for SQLite
	}

}