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