for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stratadox\Hydration\Mapping\Property\Scalar;
/**
* Maps the value directly onto an object property.
*
* @package Stratadox\Hydrate
* @author Stratadox
*/
final class OriginalValue extends Scalar
{
/** @inheritdoc */
public function value(array $data, $owner = null)
return $this->my($data);
}