/var/www/cobraambalaj/vendor/symfony/cache/Traits
NameSizeModeActions
AbstractAdapterTrait.php117770644editdlrm
ContractsTrait.php34920644editdlrm
FilesystemCommonTrait.php54270644editdlrm
FilesystemTrait.php29980644editdlrm
MemcachedTrait.php130060644editdlrm
ProxyTrait.php8170644editdlrm
RedisClusterProxy.php17060644editdlrm
RedisProxy.php18220644editdlrm
RedisTrait.php226820644editdlrm
Edit: /var/www/cobraambalaj/vendor/symfony/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(); } } }