| Name | Size | Mode | Actions |
|---|---|---|---|
| DefaultMarshaller.php | 3750 | 0644 | editdlrm |
| DeflateMarshaller.php | 1237 | 0644 | editdlrm |
| MarshallerInterface.php | 1081 | 0644 | editdlrm |
| SodiumMarshaller.php | 2397 | 0644 | editdlrm |
| TagAwareMarshaller.php | 3107 | 0644 | editdlrm |
/usr/share/php/Symfony/Component/Cache/Marshaller/MarshallerInterface.php (1081B)
*/ interface MarshallerInterface { /** * Serializes a list of values. * * When serialization fails for a specific value, no exception should be * thrown. Instead, its key should be listed in $failed. */ public function marshall(array $values, ?array &$failed): array; /** * Unserializes a single value and throws an exception if anything goes wrong. * * @return mixed * * @throws \Exception Whenever unserialization fails */ public function unmarshall(string $value); }