summaryrefslogtreecommitdiff
path: root/app/Models/Factory.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Factory.php')
-rw-r--r--app/Models/Factory.php72
1 files changed, 28 insertions, 44 deletions
diff --git a/app/Models/Factory.php b/app/Models/Factory.php
index be96c0e58..6c140475e 100644
--- a/app/Models/Factory.php
+++ b/app/Models/Factory.php
@@ -14,79 +14,63 @@ class FreshRSS_Factory {
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createCategoryDao(?string $username = null): FreshRSS_CategoryDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_CategoryDAOSQLite($username);
- default:
- return new FreshRSS_CategoryDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_CategoryDAOSQLite($username),
+ default => new FreshRSS_CategoryDAO($username),
+ };
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createFeedDao(?string $username = null): FreshRSS_FeedDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_FeedDAOSQLite($username);
- default:
- return new FreshRSS_FeedDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_FeedDAOSQLite($username),
+ default => new FreshRSS_FeedDAO($username),
+ };
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createEntryDao(?string $username = null): FreshRSS_EntryDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_EntryDAOSQLite($username);
- case 'pgsql':
- return new FreshRSS_EntryDAOPGSQL($username);
- default:
- return new FreshRSS_EntryDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_EntryDAOSQLite($username),
+ 'pgsql' => new FreshRSS_EntryDAOPGSQL($username),
+ default => new FreshRSS_EntryDAO($username),
+ };
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createTagDao(?string $username = null): FreshRSS_TagDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_TagDAOSQLite($username);
- case 'pgsql':
- return new FreshRSS_TagDAOPGSQL($username);
- default:
- return new FreshRSS_TagDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_TagDAOSQLite($username),
+ 'pgsql' => new FreshRSS_TagDAOPGSQL($username),
+ default => new FreshRSS_TagDAO($username),
+ };
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createStatsDAO(?string $username = null): FreshRSS_StatsDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_StatsDAOSQLite($username);
- case 'pgsql':
- return new FreshRSS_StatsDAOPGSQL($username);
- default:
- return new FreshRSS_StatsDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_StatsDAOSQLite($username),
+ 'pgsql' => new FreshRSS_StatsDAOPGSQL($username),
+ default => new FreshRSS_StatsDAO($username),
+ };
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createDatabaseDAO(?string $username = null): FreshRSS_DatabaseDAO {
- switch (FreshRSS_Context::systemConf()->db['type'] ?? '') {
- case 'sqlite':
- return new FreshRSS_DatabaseDAOSQLite($username);
- case 'pgsql':
- return new FreshRSS_DatabaseDAOPGSQL($username);
- default:
- return new FreshRSS_DatabaseDAO($username);
- }
+ return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
+ 'sqlite' => new FreshRSS_DatabaseDAOSQLite($username),
+ 'pgsql' => new FreshRSS_DatabaseDAOPGSQL($username),
+ default => new FreshRSS_DatabaseDAO($username),
+ };
}
}