zendframework/zend-hydrator
Zend Hydrator provides strategies and tools to extract data from objects and hydrate objects from arrays in PHP. Supports naming strategies, custom hydrators, and flexible configuration, useful for forms, APIs, and domain model mapping.
This document details changes made between version 2 and version 3 that could affect end-users.
Version 3 bumps the minimum supported PHP version to version 7.2. We chose this
version in particular as it provides the object typehint, which allows us to
enforce at the engine level what we were previously enforcing only at the
documentation level.
Additionally, we have enabled strict types in all class files shipped with this component.
The minimum supported version of zend-eventmanager (used by the
AggregateHydrator)is now 3.2.1.
The minimum supported version of zend-serializer (used by the
SerializableStrategy) is now 2.9.0.
The minimum supported version of zend-servicemanager (used by the
HydratorPluginManager) is now 3.3.2.
The following interfaces were renamed:
Zend\Hydrator\FilterEnabledInterface becomes Zend\Hydrator\Filter\FilterEnabledInterface.Zend\Hydrator\NamingStrategyEnabledInterface becomes Zend\Hydrator\NamingStrategy\NamingStrategyEnabledInterface.Zend\Hydrator\StrategyEnabledInterface becomes Zend\Hydrator\Strategy\StrategyEnabledInterface.The following classes were renamed:
Zend\Hydrator\ArraySerializable becomes Zend\Hydrator\ArraySerializableHydratorZend\Hydrator\ClassMethods becomes Zend\Hydrator\ClassMethodsHydratorZend\Hydrator\ObjectProperty becomes Zend\Hydrator\ObjectPropertyHydratorZend\Hydrator\Reflection becomes Zend\Hydrator\ReflectionHydratorIn each case, a class named after the original has been created as a deprecated extension of the new class. This means you can continue to use the old class names, but only until version 4, at which point they will be removed.
Additionally, aliases for the old class names have been added to the
HydratorPluginManager, pointing to services named after the new class names.
Each of the interfaces provided by this package have been updated to add typehints where they were previously omitted (due to engine limitations), both on parameters and return values. These include:
Zend\Hydrator\ExtractionInterface:
extract($object) becomes extract(object $object) : arrayZend\Hydrator\Filter\FilterEnabledInterface (was Zend\Hydrator\FilterEnabledInterface):
addFilter($name, $filter, $condition = Zend\Hydrator\Filter\FilterComposite::CONDITION_OR) becomes addFilter(string $name, $filter, int $condition = Zend\Hydrator\Filter\FilterComposite::CONDITION_OR) : voidhasFilter($name) becomes hasFilter(string $name) : boolremoveFilter($name) becomes removeFilter(string $name) : voidZend\Hydrator\HydrationInterface:
hydrate(array $data, $object) becomes hydrate(array $data, object $object)Zend\Hydrator\HydratorAwareInterface:
setHydrator(Zend\Hydrator\HydratorInterface $hydrator) becomes setHydrator(Zend\Hydrator\HydratorInterface $hydrator) : voidgetHydrator() becomes getHydrator() : ?Zend\Hydrator\HydratorInterfaceZend\Hydrator\HydratorAwareTrait was updated to follow the interface; if
you use the trait to implement the interface, no changes will be necessary.Zend\Hydrator\HydratorOptionsInterface:
setOptions($options) becomes setOptions(iterable $options) : voidZend\Hydrator\HydratorProviderInterface:
getHydratorConfig() becomes getHydratorConfig() : arrayZend\Hydrator\NamingStrategy\NamingStrategyEnabledInterface (was Zend\Hydrator\NamingStrategyEnabledInterface):
setNamingStrategy(Zend\Hydrator\NamingStrategy\NamingStrategyInterface $strategy) becomes setNamingStrategy(Zend\Hydrator\NamingStrategy\NamingStrategyInterface $strategy) : voidgetNamingStrategy() becomes getNamingStrategy() : Zend\Hydrator\NamingStrategy\NamingStrategyInterfaceremoveNamingStrategy() becomes removeNamingStrategy() : voidZend\Hydrator\Strategy\StrategyEnabledInterface (was Zend\Hydrator\StrategyEnabledInterface):
addStrategy($name, Zend\Hydrator\Strategy\StrategyInterface $strategy) becomes addStrategy(string $name, Zend\Hydrator\Strategy\StrategyInterface $strategy) : voidgetStrategy($name) becomes getStrategy(string $name) : Zend\Hydrator\Strategy\StrategyInterfacehasStrategy($name) becomes hasStrategy(string $name) : boolremoveStrategy($name) becomes removeStrategy(string $name) : voidZend\Hydrator\Filter\FilterInterface:
filter($property) becomes filter(string $property) : boolZend\Hydrator\Filter\FilterProviderInterface:
getFilter() becomes getFilter() : Zend\Hydrator\Filter\FilterInterfaceZend\Hydrator\Iterator\HydratingIteratorInterface:
setPrototype($prototype) becomes setPrototype($prototype) : void ($prototype continues to allow either a string or object)setHydrator(Zend\Hydrator\HydratorInterface $hydrator) becomes setHydrator(Zend\Hydrator\HydratorInterface $hydrator) : voidZend\Hydrator\NamingStrategy\NamingStrategyInterface:
extract($name) becomes extract(string $name, ?object $object = null) : stringhydrate($name) becomes hydrate(string $name, ?array $data = null) : stringZend\Hydrator\Strategy\StrategyInterface:
hydrate($value) becomes hydrate($value, ?array $data = null) (the $value parameter and return value can be any PHP type)extract($value) becomes extract($value, ?object $object = null) (the $value parameter and return value can be any PHP type)All implementations of these interface shipped in the component have been updated to ensure signatures match.
If you are providing custom implementations, or extending the implementations provided in this package, you may need to update signatures per the above.
As noted in the above section, typehints were added to all interfaces. In addition to those changes, the following methods were also updated to add typehints:
Zend\Hydrator\Aggregate\AggregateHydrator:
add(Zend\Hydrator\HydratorInterface $hydrator, $priority = self::DEFAULT_PRIORITY) becomes add(Zend\Hydrator\HydratorInterface $hydrator, int $priority = self::DEFAULT_PRIORITY) : voidZend\Hydrator\Aggregate\ExtractEvent:
__construct($target, $extractionObject) becomes __construct(object $target, object $extractionObject)getExtractionObject() becomes getExtractionObject() : objectsetExtractionObject($extractionObject) becomes setExtractionObject(object $extractionObject) : voidgetExtractedData() becomes getExtractedData() : arraysetExtractedData(array $extractedData) becomes setExtractedData(array $extractedData) : voidmergeExtractedData(array $additionalData) becomes mergeExtractedData(array $additionalData) : voidZend\Hydrator\Aggregate\HydrateEvent:
__construct($target, $hydratedObject, array $hydrationData) becomes __construct(object $target, object $hydratedObject, array $hydrationData)getHydratedObject() becomes getHydratedObject() : objectsetHydratedObject($hydratedObject) becomes setHydratedObject(object $hydratedObject) : voidgetHydrationData() becomes getHydrationData() : arraysetHydrationData(array $hydrationData) becomes setHydrationData(array $hydrationData) : voidZend\Hydrator\Aggregate\HydratorListener:
onHydrate(HydrateEvent $event) becomes onHydrate(HydrateEvent $event) : objectonExtract(ExtractEvent $event) becomes onExtract(ExtractEvent $event) : arrayZend\Hydrator\ClassMethodsHydrator (was Zend\Hydrator\ClassMethods):
__construct($underscoreSeparatedKeys = true, $methodExistsCheck = false) becomes __construct(bool $underscoreSeparatedKeys = true, bool $methodExistsCheck = false)setUnderscoreSeparatedKeys($underscoreSeparatedKeys) becomes setUnderscoreSeparatedKeys(bool $underscoreSeparatedKeys) : voidgetUnderscoreSeparatedKeys() becomes getUnderscoreSeparatedKeys() : boolsetMethodExistsCheck($methodExistsCheck) becomes setMethodExistsCheck(bool $methodExistsCheck) : voidgetMethodExistsCheck() becomes getMethodExistsCheck() : boolZend\Hydrator\ConfigProvider:
__invoke() becomes __invoke() : arraygetDependencyConfig() becomes getDependencyConfig() : arrayZend\Hydrator\DelegatingHydratorFactory:
Zend\ServiceManager\FactoryInterface__invoke(Interop\Container\ContainerInterface $container, $requestedName, array $options = null) becomes __invoke(Psr\Container\ContainerInterface $container) : Zend\Hydrator\DelegatingHydratorZend\Hydrator\Filter\FilterComposite:
__construct($orFilters = [], $andFilters = []) becomes __construct(array $orFilters = [], array $andFilters = [])Zend\Hydrator\Filter\MethodMatchFilter:
__construct($method, $exclude = true) becomes __construct(string $method, bool $exclude = true)Zend\Hydrator\Filter\NumberOfParameterFilter:
__construct($numberOfParameters = 0) becomes __construct(int $numberOfParameters = 0)Zend\Hydrator\HydratorPluginManagerFactory:
Zend\ServiceManager\FactoryInterface__invoke(Interop\Container\ContainerInterface $container, $requestedName, array $options = null) becomes __invoke(Psr\Container\ContainerInterface $container, string $name, ?array $options = []) : Zend\Hydrator\HydratorPluginManagerZend\Hydrator\Module:
getConfig() becomes getConfig() : arrayinit($moduleManager) becomes init(Zend\ModuleManager\ModuleManager $moduleManager) : voidZend\Hydrator\NamingStrategy\CompositeNamingStrategy:
__construct(array $strategies, Zend\Hydrator\NamingStrategy\NamingStrategyInterface $defaultNamingStrategy = null) becomes __construct(array $strategies, ?Zend\Hydrator\NamingStrategy\NamingStrategyInterface $defaultNamingStrategy = null)Zend\Hydrator\NamingStrategy\UnderscoreNamingStrategy\CamelCaseToUnderscoreFilter:
filter($value) becomes filter(string $value) : stringZend\Hydrator\NamingStrategy\UnderscoreNamingStrategy\UnderscoreToCamelCaseFilter:
filter($value) becomes filter(string $value) : stringZend\Hydrator\Strategy\ClosureStrategy:
__construct($extractFunc = null, $hydrateFunc = null) becomes __construct(?callable $extractFunc = null, ?callable $hydrateFunc = null)Zend\Hydrator\Strategy\CollectionStrategy:
__construct(Zend\Hydrator\HydratorInterface $objectHydrator, $objectClassName) becomes __construct(Zend\Hydrator\HydratorInterface $objectHydrator, string $objectClassName)Zend\Hydrator\Strategy\DateTimeFormatterStrategy:
__construct($format = DateTime::RFC3339, DateTimeZone $timezone = null, $dateTimeFallback = false) becomes __construct(string $format = DateTime::RFC3339, ?DateTimeZone $timezone = null, bool $dateTimeFallback = false)Zend\Hydrator\Strategy\ExplodeStrategy:
__construct($delimiter = ',', $explodeLimit = null) becomes __construct(string $delimiter = ',', ?int $explodeLimit = null)Zend\Hydrator\Strategy\SerializableStrategy:
__construct($serializer, $serializerOptions = null) becomes __construct($serializer, ?iterable $serializerOptions = null)setSerializer($serializer) becomes setSerializer($serializer) : voidgetSerializer() becomes getSerializer($serializer) : Zend\Serializer\Adapter\AdapterInterfacesetSerializerOptions($serializerOptions) becomes setSerializerOptions(iterable $serializerOptions) : voidgetSerializerOptions() becomes getSerializerOptions() : arrayZend\Hydrator\Strategy\StrategyChain:
__construct($extractionStrategies) becomes __construct(iterable $extractionStrategies)ArrayMapNamingStrategy and MapNamingStrategy were performing essentially the
same duties, but in reverse. As such, for version 3, we have merged the two into
MapNamingStrategy. To accommodate the three different use cases, we provide
three "named constructors":
public static function createFromExtractionMap(array $extractionMap) : MapNamingStrategy;
public static function createFromHydrationMap(array $hydrationMap) : MapNamingStrategy;
public static function createFromAsymmetricMap(array $extractionMap, array $hydrationMap) : MapNamingStrategy;
In the first two cases, the constructor will flip the arrays for purposes of the
opposite interaction; e.g., using createFromExtractionMap() will create a
hydration map based on an array_flip() of the extraction map provided.
You MUST use one of these methods to create an instance, as the constructor
is now marked private.
This version removes support for zend-servicemanager v2 service names. Under zend-servicemanager v2, most special characters were removed, and the name normalized to all lowercase. Now, only fully qualified class names are mapped to factories, and short names (names omitting the namespace and/or "Hydrator" suffix) are mapped as aliases.
Additionally, version 3 ships a standalone, PSR-11 compliant version,
Zend\Hydrator\StandaloneHydratorPluginManager. By default, the HydratorManager
service alias will point to the StandaloneHydratorPluginManager if
zend-servicemanager is not installed, and the HydratorPluginManager otherwise.
See the plugin managers chapter for more details.
How can I help you explore Laravel packages today?