Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Contracts /
Cache /
Delete
Unzip
Name
Size
Permission
Date
Action
CacheInterface.php
2.34
KB
-rw-r--r--
2024-11-28 08:37
CacheTrait.php
2.52
KB
-rw-r--r--
2024-11-28 08:37
CallbackInterface.php
811
B
-rw-r--r--
2024-11-28 08:37
ItemInterface.php
1.73
KB
-rw-r--r--
2024-11-28 08:37
TagAwareCacheInterface.php
1005
B
-rw-r--r--
2024-11-28 08:37
autoload.php
1.11
KB
-rw-r--r--
2026-05-24 13:36
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\CacheItemInterface; /** * Computes and returns the cached value of an item. * * @author Nicolas Grekas <p@tchwork.com> */ interface CallbackInterface { /** * @param CacheItemInterface|ItemInterface $item The item to compute the value for * @param bool &$save Should be set to false when the value should not be saved in the pool * * @return mixed The computed value for the passed item */ public function __invoke(CacheItemInterface $item, bool &$save); }