yrizos/stockpile

View on GitHub
src/PoolInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Stockpile;

use Psr\Cache\CacheItemPoolInterface as PsrCacheItemPoolInterface;

interface PoolInterface extends PsrCacheItemPoolInterface
{

    public function __construct(DriverInterface $driver = null);

    public function setDriver(DriverInterface $driver);

    public function getDriver();

}