2017 © Pedro Peláez
 

library hydrator

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

image

samdark/hydrator

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  • Thursday, July 20, 2017
  • by samdark
  • Repository
  • 7 Watchers
  • 94 Stars
  • 6,691 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 1 Open issues
  • 6 Versions
  • 18 % Grown

The README.md

Hydrator

Hydrator can be used for two purposes:, (*1)

  • To extract data from a class to be further stored in a persistent storage.
  • To fill an object with data or create a new instance of a class filled with data.

In both cases it is saving and filling protected and private properties without calling any methods which leads to ability to persist state of an object with properly encapsulated data., (*2)

Latest Stable Version Total Downloads Build Status, (*3)

Installation

The preferred way to install this package is through composer., (*4)

composer require --prefer-dist samdark/hydrator

Usage

Consider we have a Post entity which represents a blog post. It has a title and a text. A unique id is generated to identify it., (*5)

class Post
{
    private $id;
    protected $title;
    protected $text;

    public function __construct($title, $text)
    {
        $this->id = uniqid('post_', true);
        $this->title = $title;
        $this->text = $text;
    }

    public function getId()
    {
        return $this->id;
    }

    public function getTitle()
    {
        return $this->title;
    }

    public function setTitle($title)
    {
        $this->title = $title;
    }

    public function getText()
    {
        return $this->text;
    }

    public function setText()
    {
        return $this->text;
    }
}

Saving a post to database:, (*6)

$post = new Post('First post', 'Hell, it is a first post.');

$postHydrator = new \samdark\hydrator\Hydrator([
    'id' => 'id',
    'title' => 'title',
    'text' => 'text',
]);

$data = $postHydrator->extract($post);
save_to_database($data);

Loading post from database:, (*7)

<?php
$data = load_from_database();

$postHydrator = new \samdark\hydrator\Hydrator([
    'id' => 'id',
    'title' => 'title',
    'text' => 'text',
]);

$post = $postHydrator->hydrate($data, Post::class);
echo $post->getId();

Filling existing post object with data:, (*8)

$data = load_from_database();

$postHydrator = new \samdark\hydrator\Hydrator([
    'title' => 'title',
    'text' => 'text',
]);

$post = get_post();
$post = $postHydrator->hydrateInto($data, $post);
echo $post->getTitle();

The Versions

20/07 2017

dev-master

9999999-dev

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator

17/05 2017

1.0.4

1.0.4.0

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator

17/05 2017

1.0.3

1.0.3.0

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator

12/04 2017

1.0.2

1.0.2.0

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator

28/11 2016

1.0.1

1.0.1.0

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator

01/11 2016

1.0.0

1.0.0.0

Allows to extract data from an object or create a new object based on data for the purpose of persisting state. Works with private and protected properties.

  Sources   Download

MIT

The Development Requires

extract hydrate hydrator