1. Go to this page and download the library: Download patchlevel/hydrator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
patchlevel / hydrator example snippets
use Patchlevel\Hydrator\MetadataHydrator;
$hydrator = new MetadataHydrator();
final readonly class ProfileCreated
{
public function __construct(
public string $id,
public string $name
) {
}
}
$event = new ProfileCreated('1', 'patchlevel');
$data = $hydrator->extract($event);
use Patchlevel\Hydrator\Normalizer\ArrayNormalizer;
use Patchlevel\Hydrator\Normalizer\DateTimeImmutableNormalizer;
final class DTO
{
#[ArrayNormalizer(new DateTimeImmutableNormalizer())]
public array $dates;
}
use Patchlevel\Hydrator\Normalizer\DateTimeImmutableNormalizer;
final class DTO
{
#[DateTimeImmutableNormalizer]
public DateTimeImmutable $date;
}
use Patchlevel\Hydrator\Normalizer\DateTimeImmutableNormalizer;
final class DTO
{
#[DateTimeImmutableNormalizer(format: DateTimeImmutable::RFC3339_EXTENDED)]
public DateTimeImmutable $date;
}
use Patchlevel\Hydrator\Normalizer\DateTimeNormalizer;
final class DTO
{
#[DateTimeNormalizer]
public DateTime $date;
}
use Patchlevel\Hydrator\Normalizer\DateTimeNormalizer;
final class DTO
{
#[DateTimeNormalizer(format: DateTime::RFC3339_EXTENDED)]
public DateTime $date;
}
use Patchlevel\Hydrator\Normalizer\DateTimeZoneNormalizer;
final class DTO
{
#[DateTimeZoneNormalizer]
public DateTimeZone $timeZone;
}
use Patchlevel\Hydrator\Normalizer\EnumNormalizer;
final class DTO
{
#[EnumNormalizer]
public Status $status;
}
use Patchlevel\Hydrator\Normalizer\ObjectNormalizer;
final class DTO
{
#[ObjectNormalizer]
public AnohterDto $anotherDto;
#[ObjectNormalizer(AnohterDto::class)]
public object $object;
}
final class AnotherDto
{
#[EnumNormalizer]
public Status $status;
}
final class Name
{
private string $value;
public function __construct(string $value)
{
if (strlen($value) < 3) {
throw new NameIsToShortException($value);
}
$this->value = $value;
}
public function toString(): string
{
return $this->value;
}
}
use Patchlevel\Hydrator\Normalizer\Normalizer;
use Patchlevel\Hydrator\Normalizer\InvalidArgument;
#[Attribute(Attribute::TARGET_PROPERTY)]
class NameNormalizer implements Normalizer
{
public function normalize(mixed $value): string
{
if (!$value instanceof Name) {
throw InvalidArgument::withWrongType(Name::class, $value);
}
return $value->toString();
}
public function denormalize(mixed $value): ?Name
{
if ($value === null) {
return null;
}
if (!is_string($value)) {
throw InvalidArgument::withWrongType('string', $value);
}
return new Name($value);
}
}
final class DTO
{
#[NameNormalizer]
public Name $name
}
use Patchlevel\Hydrator\Normalizer\Normalizer;
use Patchlevel\Hydrator\Normalizer\InvalidArgument;
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_CLASS)]
class NameNormalizer implements Normalizer
{
// ... same as before
}
#[NameNormalizer]
final class Name
{
// ... same as before
}
final class DTO
{
public Name $name
}
use Patchlevel\Hydrator\Attribute\NormalizedName;
final class DTO
{
#[NormalizedName('profile_name')]
public string $name
}
[
'profile_name' => 'David'
]
use Patchlevel\Hydrator\Attribute\Ignore;
readonly class ProfileCreated
{
public function __construct(
public string $id,
public string $name,
#[Ignore]
public string $ignoreMe,
) {
}
}
use Patchlevel\Hydrator\Attribute\PostHydrate;
use Patchlevel\Hydrator\Attribute\PreExtract;
readonly class Dto
{
#[PostHydrate]
private function postHydrate(): void
{
// do something
}
#[PreExtract]
private function preExtract(): void
{
// do something
}
}
use Patchlevel\Hydrator\Attribute\PersonalData;
final class DTO
{
#[PersonalData]
public readonly string|null $email;
}
use Patchlevel\Hydrator\Attribute\PersonalData;
final class DTO
{
public function __construct(
#[PersonalData(fallback: 'unknown')]
public readonly string $email,
) {
}
}
use Patchlevel\Hydrator\Attribute\DataSubjectId;
use Patchlevel\Hydrator\Attribute\PersonalData;
final class EmailChanged
{
public function __construct(
#[DataSubjectId]
public readonly string $personId,
#[PersonalData(fallback: 'unknown')]
public readonly string|null $email,
) {
}
}
use Patchlevel\Hydrator\Cryptography\PersonalDataPayloadCryptographer;
use Patchlevel\Hydrator\Cryptography\Store\CipherKeyStore;
use Patchlevel\Hydrator\Metadata\Event\EventMetadataFactory;
use Patchlevel\Hydrator\MetadataHydrator;
$cipherKeyStore = new InMemoryCipherKeyStore();
$cryptographer = PersonalDataPayloadCryptographer::createWithOpenssl($cipherKeyStore);
$hydrator = new MetadataHydrator(cryptographer: $cryptographer);
use Patchlevel\Hydrator\Cryptography\Cipher\CipherKey;
use Patchlevel\Hydrator\Cryptography\Store\InMemoryCipherKeyStore;
$cipherKeyStore = new InMemoryCipherKeyStore();
/** @var CipherKey $cipherKey */
$cipherKeyStore->store('foo-id', $cipherKey);
$cipherKey = $cipherKeyStore->get('foo-id');
$cipherKeyStore->remove('foo-id');
$cipherKeyStore->remove('foo-id');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.