yrizos/stockpile

View on GitHub
src/StockpileInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Stockpile;

interface StockpileInterface extends CacheInterface
{

    public function __construct($driver, array $options = []);

    public function setDriver(DriverInterface $driver);

    public function getDriver();

}