Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 239 Bytes

PropertyAccessor.md

File metadata and controls

16 lines (11 loc) · 239 Bytes

PropertyAccessor

<?php

use Chubbyphp\Validation\Accessor\PropertyAccessor;
use MyProject\Model;

$object = new Model;
$object->name = 'php';

$accessor = new PropertyAccessor('name');

$accessor->getValue($object);
// 'php'