%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/caching/src/Caching/Storages/ |
Current File : //data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/caching/src/Caching/Storages/Journal.php |
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Caching\Storages; /** * Cache journal provider. */ interface Journal { /** * Writes entry information into the journal. */ function write(string $key, array $dependencies): void; /** * Cleans entries from journal. * @return array|null of removed items or null when performing a full cleanup */ function clean(array $conditions): ?array; } class_exists(IJournal::class);