for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the BEAR.QueryRepository package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\QueryRepository;
use BEAR\RepositoryModule\Annotation\Storage;
use Doctrine\Common\Cache\CacheProvider;
use Ray\Di\AbstractModule;
use Ray\Di\Scope;
class StorageApcModule extends AbstractModule
{
* {@inheritdoc}
protected function configure()
$this->bind(CacheProvider::class)->annotatedWith(Storage::class)->toProvider(StorageApcCacheProvider::class)->in(Scope::SINGLETON);
}