mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 14:48:20 +01:00
20 lines
335 B
PHP
20 lines
335 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Fake\Cache\Compiled;
|
|
|
|
use CuyZ\Valinor\Cache\Compiled\CacheCompiler;
|
|
|
|
use function is_string;
|
|
|
|
final class FakeCacheCompiler implements CacheCompiler
|
|
{
|
|
public function compile($value): string
|
|
{
|
|
assert(is_string($value));
|
|
|
|
return "'$value'";
|
|
}
|
|
}
|