ChainEncoder

class ChainEncoder implements EncoderInterface Encoder delegating the decoding to a chain of encoders. Methods __construct(array $encoders = array()) scalar encode(mixed $data, string $format, array $context = array()) Encodes data into the given format. bool supportsEncoding(string $format) Checks whether the serializer can encode to given format. bool needsNormalization(string $format) Checks whether the normalization is needed for the given format. Details

ChainDecoder::decode()

final mixed decode(string $data, string $format, array $context = array()) Decodes a string into PHP data. Parameters string $data Data to decode string $format Format name array $context options that decoders have access to The format parameter specifies which format the data is in; valid values depend on the specific implementation. Authors implementing this interface are encouraged to document which formats they support in a non-inherited phpdoc comment.

ChainDecoder::supportsDecoding()

bool supportsDecoding(string $format) Checks whether the deserializer can decode from given format. Parameters string $format format name Return Value bool

ChainCacheClearer

class ChainCacheClearer implements CacheClearerInterface ChainCacheClearer. Methods __construct(array $clearers = array()) Constructs a new instance of ChainCacheClearer. clear(string $cacheDir) Clears any caches necessary. add(CacheClearerInterface $clearer) Adds a cache clearer to the aggregate. Details __construct(array $clearers = array()) Constructs a new instance of ChainCacheClearer. Parameters array $clearers The initial cl

ChainAdapter::save()

save(CacheItemInterface $item) {@inheritdoc} Parameters CacheItemInterface $item

ChainCacheClearer::clear()

clear(string $cacheDir) Clears any caches necessary. Parameters string $cacheDir The cache directory

ChainAdapter::hasItem()

hasItem($key) {@inheritdoc} Parameters $key

ChainAdapter::saveDeferred()

saveDeferred(CacheItemInterface $item) {@inheritdoc} Parameters CacheItemInterface $item

ChainCacheClearer::add()

add(CacheClearerInterface $clearer) Adds a cache clearer to the aggregate. Parameters CacheClearerInterface $clearer

ChainAdapter::getItems()

getItems(array $keys = array()) {@inheritdoc} Parameters array $keys