Blame view

vendor/codeception/base/src/Codeception/Util/PropertyAccess.php 429 Bytes
8ec727c1   曹明   初始化代码提交
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);
    }
}