| 1 | <?php |
||
| 17 | class CachedJsonLdDataValueFormatter implements JsonLdDataValueFormatter { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var JsonLdDataValueFormatter |
||
| 21 | */ |
||
| 22 | private $formatter; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var JsonLdDataValueFormatterCache |
||
| 26 | */ |
||
| 27 | private $cache; |
||
| 28 | |||
| 29 | |||
| 30 | 2 | public function __construct(JsonLdDataValueFormatter $formatter, JsonLdDataValueFormatterCache $cache) { |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @see ValueFormatter::format |
||
| 37 | */ |
||
| 38 | 2 | public function format($value) { |
|
| 51 | } |
||
| 52 |