Valinor/tests/Fake/Cache/Compiled/FakeCacheCompiler.php

20 lines
335 B
PHP
Raw Normal View History

2021-11-28 17:43:02 +01:00
<?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'";
}
}