1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php namespace Codeception\Util; class PropertyAccess { /** * @deprecated Use ReflectionHelper::readPrivateProperty() * @param object $object * @param string $property * @param string|null $class * @return mixed */ public static function readPrivateProperty($object, $property, $class = null) { return ReflectionHelper::readPrivateProperty($object, $property, $class); } }