Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
sslit
/
vendor
/
symfony
/
cache-contracts
/
File Content:
CallbackInterface.php
<?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 PleskSslIt\Symfony\Contracts\Cache; use PleskSslIt\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); }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
CacheInterface.php
2426 bytes
0644
CacheTrait.php
2578 bytes
0644
CallbackInterface.php
831 bytes
0644
ItemInterface.php
1812 bytes
0644
TagAwareCacheInterface.php
1025 bytes
0644
N4ST4R_ID | Naxtarrr