for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sunspikes\src\Throttle\Cache\Bridge;
use Cache\Adapter\Common\CacheItem;
use Psr\Cache\CacheItemInterface;
class CacheItemBridge extends CacheItem implements CacheItemInterface
{
public function __construct(string $key, string $value = null)
parent::__construct($key, null, $value);
}