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