Untitled
Anonymous
php
06/19/2023 1:57 PM
428 B
27
Indexable
<?php
class NullCache implements CacheInterface
{
public function has(string $key): bool
{
return false;
}
public function get(string $key): mixed
{
// drzim se psr-6
return null;
}
public function set(string $key, mixed $value): void
{
// void
}
}Editor is loading...