Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.144.100.199
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 /
Component /
Cache /
Adapter /
Delete
Unzip
Name
Size
Permission
Date
Action
AbstractAdapter.php
8.13
KB
-rw-r--r--
2025-02-05 16:33
AbstractTagAwareAdapter.php
12.24
KB
-rw-r--r--
2025-02-05 16:33
AdapterInterface.php
963
B
-rw-r--r--
2025-02-05 16:33
ApcuAdapter.php
3.87
KB
-rw-r--r--
2022-01-29 18:08
ArrayAdapter.php
10.92
KB
-rw-r--r--
2025-02-05 16:33
ChainAdapter.php
8.76
KB
-rw-r--r--
2025-02-05 16:33
CouchbaseBucketAdapter.php
7.55
KB
-rw-r--r--
2022-01-29 18:08
CouchbaseCollectionAdapter.php
6.55
KB
-rw-r--r--
2022-01-29 18:08
DoctrineAdapter.php
2.78
KB
-rw-r--r--
2022-01-29 18:08
DoctrineDbalAdapter.php
15
KB
-rw-r--r--
2022-01-29 18:08
FilesystemAdapter.php
933
B
-rw-r--r--
2022-01-29 18:08
FilesystemTagAwareAdapter.php
7.41
KB
-rw-r--r--
2022-01-29 18:08
MemcachedAdapter.php
13.43
KB
-rw-r--r--
2022-01-29 18:08
NullAdapter.php
2.59
KB
-rw-r--r--
2025-02-05 16:33
ParameterNormalizer.php
898
B
-rw-r--r--
2022-01-29 18:08
PdoAdapter.php
19.85
KB
-rw-r--r--
2022-01-29 18:08
PhpArrayAdapter.php
12.24
KB
-rw-r--r--
2025-02-05 16:33
PhpFilesAdapter.php
10.02
KB
-rw-r--r--
2022-01-29 18:08
ProxyAdapter.php
8.27
KB
-rw-r--r--
2025-02-05 16:33
Psr16Adapter.php
1.9
KB
-rw-r--r--
2025-02-05 16:33
RedisAdapter.php
1.17
KB
-rw-r--r--
2022-01-29 18:08
RedisTagAwareAdapter.php
11.93
KB
-rw-r--r--
2022-01-29 18:08
TagAwareAdapter.php
11.12
KB
-rw-r--r--
2025-02-05 16:33
TagAwareAdapterInterface.php
775
B
-rw-r--r--
2025-02-05 16:33
TraceableAdapter.php
6.77
KB
-rw-r--r--
2025-02-05 16:33
TraceableTagAwareAdapter.php
932
B
-rw-r--r--
2025-02-05 16:33
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\Component\Cache\Adapter; use Psr\Cache\InvalidArgumentException; /** * Interface for invalidating cached items using tags. * * @author Nicolas Grekas <p@tchwork.com> */ interface TagAwareAdapterInterface extends AdapterInterface { /** * Invalidates cached items using tags. * * @param string[] $tags An array of tags to invalidate * * @return bool * * @throws InvalidArgumentException When $tags is not valid */ public function invalidateTags(array $tags): bool; }