1. Go to this page and download the library: Download sav/hydrator-creator 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/ */
sav / hydrator-creator example snippets
use Sav\Hydrator\Hydrator;
final class User
{
public readonly string $email;
public function __construct(
string $email,
public readonly string $name
) {
$this->email = strtolower($email);
}
}
$data = [
'email' => '[email protected]',
'name' => 'Sam',
];
$user = Hydrator::init()->hydrate(User::class, $data);
var_dump($user);
use Sav\Hydrator\Hydrator;
final class Item
{
public function __construct(
public readonly int $id,
public readonly string $name,
) {
}
}
final class PriceValueObject
{
public function __construct(
private readonly float $value,
) {
}
public function getValue(): float
{
return $this->value;
}
}
final class OrderItem
{
public function __construct(
public readonly Item $product,
public readonly PriceValueObject $cost,
) {
}
}
$data = [
'product' => ['id' => 1, 'name' => 'phone'],
'cost' => 10012.23,
];
$orderItem = Hydrator::init()->hydrate(OrderItem::class, $data);
var_dump($orderItem);
use Sav\Hydrator\Hydrator;
use Sav\Hydrator\Attribute\ValueExtractor\Alias;
class User
{
public function __construct(
private readonly int $id,
#[Alias('personalPhone')]
private readonly string $phone,
) {
}
}
use Sav\Hydrator\Hydrator;
use Sav\Hydrator\Attribute\ValueModifier\DefaultValue;
class User
{
public function __construct(
public readonly int $id,
#[DefaultValue(new DateTimeImmutable('2023-01-03'))]
public readonly DateTimeImmutable $dateCreate,
#[DefaultValue(100, applyForEmpty: true)]
public readonly int $balance,
public readonly int $limit = 30,
) {
}
}
$user = Hydrator::init()->hydrate(User::class, ['id' => 1, 'balance' => 0]);
var_dump($user);
use Sav\Hydrator\Hydrator;
use Sav\Hydrator\Attribute\RequiredKeyValue;
#[RequiredKeyValue]
class User
{
public function __construct(
public readonly ?int $id,
public readonly int $balance = 3,
) {
}
}
try {
$user = Hydrator::init()->hydrate(User::class, ['id' => 1]);
} catch(HydratorException $e) {
echo $e->getMessage();
}
use Sav\Hydrator\Hydrator;
use Sav\Hydrator\Attribute\ValueValidator\NotEmpty;
class User
{
public function __construct(
public readonly int $id,
#[NotEmpty]
public readonly int $balance,
) {
}
}
try {
$user = Hydrator::init()->hydrate(User::class, ['id' => 1, 'balance' => 0]);
} catch(HydratorException $e) {
echo $e->getMessage();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.