Files
FreshRSS/app/Models/Factory.php

14 lines
246 B
PHP

<?php
class FreshRSS_Factory {
public static function createEntryDao() {
$db = Minz_Configuration::dataBase();
if ($db['type'] === 'sqlite') {
return new FreshRSS_EntryDAOSQLite();
} else {
return new FreshRSS_EntryDAO();
}
}
}