Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: NativeBuiltinMethodReflection.php
<?php declare(strict_types = 1); namespace PHPStan\Reflection\Php; class NativeBuiltinMethodReflection implements BuiltinMethodReflection { /** @var \ReflectionMethod */ private $reflection; public function __construct(\ReflectionMethod $reflection) { $this->reflection = $reflection; } public function getName(): string { return $this->reflection->getName(); } /** * @return string|false */ public function getFileName() { return $this->reflection->getFileName(); } public function getDeclaringClass(): \ReflectionClass { return $this->reflection->getDeclaringClass(); } /** * @return int|false */ public function getStartLine() { return $this->reflection->getStartLine(); } /** * @return int|false */ public function getEndLine() { return $this->reflection->getEndLine(); } /** * @return string|false */ public function getDocComment() { return $this->reflection->getDocComment(); } public function isStatic(): bool { return $this->reflection->isStatic(); } public function isPrivate(): bool { return $this->reflection->isPrivate(); } public function isPublic(): bool { return $this->reflection->isPublic(); } public function getPrototype(): BuiltinMethodReflection { return new self($this->reflection->getPrototype()); } public function isDeprecated(): bool { return $this->reflection->isDeprecated(); } public function isFinal(): bool { return $this->reflection->isFinal(); } public function isInternal(): bool { return $this->reflection->isInternal(); } public function isAbstract(): bool { return $this->reflection->isAbstract(); } public function isVariadic(): bool { return $this->reflection->isVariadic(); } public function getReturnType(): ?\ReflectionType { return $this->reflection->getReturnType(); } /** * @return \ReflectionParameter[] */ public function getParameters(): array { return $this->reflection->getParameters(); } }