Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: MethodPrototypeReflection.php
<?php declare(strict_types = 1); namespace PHPStan\Reflection; class MethodPrototypeReflection implements ClassMemberReflection { /** @var \PHPStan\Reflection\ClassReflection */ private $declaringClass; /** @var bool */ private $isStatic; /** @var bool */ private $isPrivate; /** @var bool */ private $isPublic; /** @var bool */ private $isAbstract; public function __construct( ClassReflection $declaringClass, bool $isStatic, bool $isPrivate, bool $isPublic, bool $isAbstract ) { $this->declaringClass = $declaringClass; $this->isStatic = $isStatic; $this->isPrivate = $isPrivate; $this->isPublic = $isPublic; $this->isAbstract = $isAbstract; } public function getDeclaringClass(): ClassReflection { return $this->declaringClass; } public function isStatic(): bool { return $this->isStatic; } public function isPrivate(): bool { return $this->isPrivate; } public function isPublic(): bool { return $this->isPublic; } public function isAbstract(): bool { return $this->isAbstract; } }