for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Efabrica\Translatte\Cache;
use Efabrica\Translatte\Dictionary;
class NullCache implements ICache
{
public function store(string $lang, array $data): void
// Nothing to do
}
public function load(string $lang): ?Dictionary
return null;