Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: PropertyTag.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDoc\Tag; use PHPStan\Type\Type; class PropertyTag { /** @var \PHPStan\Type\Type */ private $type; /** @var bool */ private $readable; /** @var bool */ private $writable; public function __construct( Type $type, bool $readable, bool $writable ) { $this->type = $type; $this->readable = $readable; $this->writable = $writable; } public function getType(): Type { return $this->type; } public function isReadable(): bool { return $this->readable; } public function isWritable(): bool { return $this->writable; } /** * @param mixed[] $properties * @return PropertyTag */ public static function __set_state(array $properties): self { return new self( $properties['type'], $properties['readable'], $properties['writable'] ); } }