yaquawa / look-alike
A tiny lib for copy properties from one to another.
v1.0.2
2020-09-02 15:28 UTC
Requires
- php: ^7.2
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is auto-updated.
Last update: 2026-03-01 00:14:22 UTC
README
A tiny lib for copy properties from one to another even if the property is not public.
Installation
composer require yaquawa/look-alike
Usage
use Yaquawa\LookAlike\LookAlike; $lookAlike = new LookAlike($targetObjectOrClass); $lookAlike->syncProperties($objectOrClass, ['property_1', 'property_2']);