/home/techb158/immovalet.com/vendor/symfony/cache/Traits
NameSizeModeActions
AbstractAdapterTrait.php118590644editdlrm
ContractsTrait.php34920644editdlrm
FilesystemCommonTrait.php54570644editdlrm
FilesystemTrait.php29980644editdlrm
ProxyTrait.php8170644editdlrm
RedisClusterNodeProxy.php13580644editdlrm
RedisClusterProxy.php17060644editdlrm
RedisProxy.php18220644editdlrm
RedisTrait.php244550644editdlrm
Edit: /home/techb158/immovalet.com/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(); } } }