PHP Neos\Flow\Property\TypeConverter Пространство имен

Interfaces

Имя Описание
MediaTypeConverterInterface A marker interface for type converters that are used to decode the content of a HTTP request

Классы

Имя Описание
AbstractTypeConverter Type converter which provides sensible default implementations for most methods. If you extend this class you only need to do the following:
ArrayConverter Converter which transforms various types to arrays.
ArrayFromObjectConverter TypeConverter which converts generic objects to arrays by converting and returning
BooleanConverter Converter which transforms simple types to a boolean.
CollectionConverter Converter which transforms strings and arrays into a Doctrine ArrayCollection.
DateTimeConverter Converter which transforms from string, integer and array into DateTime objects.
FloatConverter Converter which transforms a float, integer or string to a float.
IntegerConverter Converter which transforms to an integer.
MediaTypeConverter Converter which transforms strings to arrays using the configured strategy.
ObjectConverter This converter transforms arrays to simple objects (POPO) by setting properties.
PersistentObjectConverter This converter transforms arrays or strings to persistent objects. It does the following:
PersistentObjectSerializer This converter transforms persistent objects to strings by returning their (technical) identifier.
SessionConverter This converter transforms a session identifier into a real session object.
StringConverter Converter which transforms simple types to a string.
TypedArrayConverter Converter which recursively transforms typed arrays (array).
UriTypeConverter A type converter for converting URI strings to Http Uri objects.