/usr/share/php/Symfony/Component/Cache/Traits
NameSizeModeActions
AbstractAdapterTrait.php117290644editdlrm
ContractsTrait.php38620644editdlrm
FilesystemCommonTrait.php54990644editdlrm
FilesystemTrait.php29980644editdlrm
ProxyTrait.php8170644editdlrm
RedisClusterNodeProxy.php13580644editdlrm
RedisClusterProxy.php17060644editdlrm
RedisProxy.php18220644editdlrm
RedisTrait.php247940644editdlrm
Edit: /usr/share/php/Symfony/Component/Cache/Traits/ProxyTrait.php (817B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Traits; use Symfony\Component\Cache\PruneableInterface; use Symfony\Contracts\Service\ResetInterface; /** * @author Nicolas Grekas * * @internal */ trait ProxyTrait { private $pool; /** * {@inheritdoc} */ public function prune() { return $this->pool instanceof PruneableInterface && $this->pool->prune(); } /** * {@inheritdoc} */ public function reset() { if ($this->pool instanceof ResetInterface) { $this->pool->reset(); } } }