for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Cache;
use League\Container\ServiceProvider\AbstractServiceProvider;
use Psr\SimpleCache\CacheInterface;
class CacheProvider extends AbstractServiceProvider
{
/**
* @var array
*/
protected $provides = [
CacheInterface::class,
];
* @inheritdoc
public function register()
$this->container->add(CacheInterface::class, RuntimeCache::class);
}