phpOMS/DataStorage/Cache/CacheFactory.php

66 lines
1.4 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
declare(strict_types = 1);
namespace phpOMS\DataStorage\Cache;
use phpOMS\DataStorage\Cache\CacheInterface;
use phpOMS\DataStorage\Cache\FileCache;
/**
* Database connection factory.
*
* @category Framework
* @package phpOMS\DataStorage\Database
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
class CacheFactory
{
/**
* Constructor.
*
* @since 1.0.0
*/
private function __construct()
{
}
/**
* Create cache connection.
*
* Overwrites current connection if existing
*
* @param string[] $cacheData the basic database information for establishing a connection
*
* @return CacheInterface
*
* @throws \InvalidArgumentException Throws this exception if the database is not supported.
*
* @since 1.0.0
*/
public static function create(array $cacheData) : CacheInterface
{
switch ($cacheData['type']) {
case 'file':
return new FileCache($cacheData['path']);
default:
throw new \InvalidArgumentException('Cache "' . $cacheData['type'] . '" is not supported.');
}
}
}