koinephp/DelayedCache

View on GitHub
src/DelayedCacheAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Koine\DelayedCache;

/**
 * Koine\DelayedCache\DelayedCacheAwareInterface
 */
interface DelayedCacheAwareInterface
{
    /**
     * @param DelayedCache $cache
     *
     * @return self
     */
    public function setDelayedCache(DelayedCache $cache);

    /**
     * @return DelayedCache
     */
    public function getDelayedCache();
}