mvaliolahi / hyrator

PHP Hydrator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP Hydrator

Install

composer require mvaliolahi/hydrate

Example

$hydrate = new Hydrate();

/**
 * @var PostDTO
 */
$post = $hydrate->to(PostDTO::class, [
  'title' => 'Test',
  'description' =>  'sample post'
]);
  • Tip: third argument of to() method can be use to overwrite data.

todo

- cast some fields to specefic object after hydrate.
- add toArray method.

About

PHP Hydrator

License:MIT License


Languages

Language:PHP 100.0%