12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Symfony\Component\Cache\Marshaller;
- interface MarshallerInterface
- {
-
- public function marshall(array $values, ?array &$failed): array;
-
- public function unmarshall(string $value);
- }
|