am2tec / hydrator
Hydrate your object with class setters
1.0
2023-05-11 15:55 UTC
Requires
- php: ^7.0|^8.1
Requires (Dev)
- phpunit/phpunit: ~6.5.13
This package is auto-updated.
Last update: 2025-03-11 20:12:12 UTC
README
Hydrator
PHP Library to hydrate objects with class setters
Instalation
composer require am2tec/hydrator
How use
If you have a class like this:
class Example
{
private $test;
public function setTest($test)
{
$this->test = $test;
}
public function getTest()
{
return $this->test;
}
}
And need to create a object from an array:
$myData = [
'test' => 'this is a test'
];
You can use FerFabricio\Hydrate\Hydrate
to do this work in a simple way:
use FerFabricio\Hydratate\Hydrate;
class Example
{
private $test;
public function setTest($test)
{
$this->test = $test;
}
public function getTest()
{
return $this->test;
}
}
$myData = [
'test' => 'this is a test'
];
$example = Hydratate::toObject(Example::class, $myData);
echo $example->getTest(); // This line will print: this is a test
Autoload
This library is only compatible with PSR-4, please be sure if your application is well configured to work with this.