/var/www/flurhymez/vendor/psy/psysh/src
NameSizeModeActions
CodeCleaner/-0755rm
Command/-0755rm
Exception/-0755rm
ExecutionLoop/-0755rm
Formatter/-0755rm
Input/-0755rm
Output/-0755rm
Readline/-0755rm
Reflection/-0755rm
Sudo/-0755rm
TabCompletion/-0755rm
Util/-0755rm
VarDumper/-0755rm
VersionUpdater/-0755rm
CodeCleaner.php122640644editdlrm
ConfigPaths.php106310644editdlrm
Configuration.php523410644editdlrm
ConsoleColorFactory.php7360644editdlrm
Context.php79400644editdlrm
ContextAware.php5670644editdlrm
EnvInterface.php4360644editdlrm
ExecutionClosure.php25080644editdlrm
ExecutionLoopClosure.php34560644editdlrm
functions.php161170644editdlrm
ParserFactory.php23350644editdlrm
Shell.php443850644editdlrm
Sudo.php50520644editdlrm
SuperglobalsEnv.php6130644editdlrm
Edit: /var/www/flurhymez/vendor/psy/psysh/src/Sudo.php (5052B)
property */ public static function fetchProperty($object, $property) { $prop = static::getProperty(new \ReflectionObject($object), $property); return $prop->getValue($object); } /** * Assign the value of a property of an object, bypassing visibility restrictions. * * @param object $object * @param string $property property name * @param mixed $value * * @return mixed Value of $object->property */ public static function assignProperty($object, $property, $value) { $prop = static::getProperty(new \ReflectionObject($object), $property); $prop->setValue($object, $value); return $value; } /** * Call a method on an object, bypassing visibility restrictions. * * @param object $object * @param string $method method name * @param mixed $args... * * @return mixed */ public static function callMethod($object, $method, $args = null) { $args = \func_get_args(); $object = \array_shift($args); $method = \array_shift($args); $refl = new \ReflectionObject($object); $reflMethod = $refl->getMethod($method); $reflMethod->setAccessible(true); return $reflMethod->invokeArgs($object, $args); } /** * Fetch a property of a class, bypassing visibility restrictions. * * @param string|object $class class name or instance * @param string $property property name * * @return mixed Value of $class::$property */ public static function fetchStaticProperty($class, $property) { $prop = static::getProperty(new \ReflectionClass($class), $property); $prop->setAccessible(true); return $prop->getValue(); } /** * Assign the value of a static property of a class, bypassing visibility restrictions. * * @param string|object $class class name or instance * @param string $property property name * @param mixed $value * * @return mixed Value of $class::$property */ public static function assignStaticProperty($class, $property, $value) { $prop = static::getProperty(new \ReflectionClass($class), $property); $prop->setValue($value); return $value; } /** * Call a static method on a class, bypassing visibility restrictions. * * @param string|object $class class name or instance * @param string $method method name * @param mixed $args... * * @return mixed */ public static function callStatic($class, $method, $args = null) { $args = \func_get_args(); $class = \array_shift($args); $method = \array_shift($args); $refl = new \ReflectionClass($class); $reflMethod = $refl->getMethod($method); $reflMethod->setAccessible(true); return $reflMethod->invokeArgs(null, $args); } /** * Fetch a class constant, bypassing visibility restrictions. * * @param string|object $class class name or instance * @param string $const constant name * * @return mixed */ public static function fetchClassConst($class, $const) { $refl = new \ReflectionClass($class); do { if ($refl->hasConstant($const)) { return $refl->getConstant($const); } $refl = $refl->getParentClass(); } while ($refl !== false); return false; } /** * Get a ReflectionProperty from an object (or its parent classes). * * @throws \ReflectionException if neither the object nor any of its parents has this property * * @param \ReflectionClass $refl * @param string $property property name * * @return \ReflectionProperty */ private static function getProperty(\ReflectionClass $refl, $property) { $firstException = null; do { try { $prop = $refl->getProperty($property); $prop->setAccessible(true); return $prop; } catch (\ReflectionException $e) { if ($firstException === null) { $firstException = $e; } $refl = $refl->getParentClass(); } } while ($refl !== false); throw $firstException; } }