Example #1
0
 /**
  * Returns all stored articles for a given website between two given dates
  * @param DateTime $startDate The lower date
  * @param DateTime $endDate The upper date
  * @param type $rootUrl
  * @return type
  */
 public function getRetrievedArticles(DateTime $startDate, DateTime $endDate, $rootUrl)
 {
     return Database::retrievePages($startDate, $endDate);
 }