PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
nette
/
utils
/
src
/
Utils
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare (strict_types=1); namespace RectorPrefix202411\Nette\Utils; /** * ReflectionMethod preserving the original class name. * @internal */ final class ReflectionMethod extends \ReflectionMethod { /** * @var \ReflectionClass */ private $originalClass; /** * @param object|string $objectOrMethod */ public function __construct($objectOrMethod, ?string $method = null) { if (\is_string($objectOrMethod) && \strpos($objectOrMethod, '::') !== \false) { [$objectOrMethod, $method] = \explode('::', $objectOrMethod, 2); } parent::__construct($objectOrMethod, $method); $this->originalClass = new \ReflectionClass($objectOrMethod); } public function getOriginalClass() : \ReflectionClass { return $this->originalClass; } }
[-] Html.php
[edit]
[-] ReflectionMethod.php
[edit]
[+]
..
[-] Paginator.php
[edit]
[-] FileSystem.php
[edit]
[-] Arrays.php
[edit]
[-] Type.php
[edit]
[-] Reflection.php
[edit]
[-] Finder.php
[edit]
[-] FileInfo.php
[edit]
[-] ArrayList.php
[edit]
[-] Callback.php
[edit]
[-] Floats.php
[edit]
[-] ImageType.php
[edit]
[-] Image.php
[edit]
[-] exceptions.php
[edit]
[-] DateTime.php
[edit]
[-] Helpers.php
[edit]
[-] Validators.php
[edit]
[-] Json.php
[edit]
[-] Strings.php
[edit]
[-] ImageColor.php
[edit]
[-] Iterables.php
[edit]
[-] ObjectHelpers.php
[edit]
[-] Random.php
[edit]
[-] ArrayHash.php
[edit]