summaryrefslogtreecommitdiff
path: root/vendor/symfony/cache/Traits/ProxyTrait.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/cache/Traits/ProxyTrait.php')
-rw-r--r--vendor/symfony/cache/Traits/ProxyTrait.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/symfony/cache/Traits/ProxyTrait.php b/vendor/symfony/cache/Traits/ProxyTrait.php
new file mode 100644
index 0000000..ba7c11f
--- /dev/null
+++ b/vendor/symfony/cache/Traits/ProxyTrait.php
@@ -0,0 +1,37 @@
1<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Cache\Traits;
13
14use Symfony\Component\Cache\PruneableInterface;
15use Symfony\Contracts\Service\ResetInterface;
16
17/**
18 * @author Nicolas Grekas <p@tchwork.com>
19 *
20 * @internal
21 */
22trait ProxyTrait
23{
24 private object $pool;
25
26 public function prune(): bool
27 {
28 return $this->pool instanceof PruneableInterface && $this->pool->prune();
29 }
30
31 public function reset(): void
32 {
33 if ($this->pool instanceof ResetInterface) {
34 $this->pool->reset();
35 }
36 }
37}