<?php
use Chubbyphp\Validation\Accessor\PropertyAccessor;
use MyProject\Model;
$object = new Model;
$object->name = 'php';
$accessor = new PropertyAccessor('name');
$accessor->getValue($object);
// 'php'
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.