for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TechDivision\Import\Connection\ArrayCachePoolFactory
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2019 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/techdivision/import
* @link http://www.techdivision.com
*/
namespace TechDivision\Import\Connection;
use Cache\Adapter\PHPArray\ArrayCachePool;
* The simple array cache factory implementation.
class ArrayCachePoolFactory implements CachePoolFactoryInterface
{
* Create's and return's the cache pool to use.
* @return \Psr\Cache\CacheItemPoolInterface The initialized connection
public function createCachePool()
return new ArrayCachePool();
}