p2 project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
567 B

<?php
declare(strict_types=1);
namespace GuzzleHttp\Promise\Tests;
/**
* A class to help get properties of an object.
*
* @internal
*
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class PropertyHelper
{
/**
* @param object $object
* @param string $property
*
* @throws \ReflectionException
*/
public static function get($object, $property)
{
$property = (new \ReflectionObject($object))->getProperty($property);
$property->setAccessible(true);
return $property->getValue($object);
}
}