*/ 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); } }