yrizos/stockpile

View on GitHub
src/DriverInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Stockpile;

interface DriverInterface extends CacheInterface
{
    public function __construct(array $options = []);

    public function getName();

    public function getOptions();

    public function getOption($name);


}