Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/Util/
Upload File :
Current File : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/Util/PropertyAccess.php

<?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);
    }
}