Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: DeprecatedTag.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDoc\Tag; class DeprecatedTag { /** @var string|null */ private $message; public function __construct(?string $message) { $this->message = $message; } public function getMessage(): ?string { return $this->message; } /** * @param mixed[] $properties * @return DeprecatedTag */ public static function __set_state(array $properties): self { return new self( $properties['message'] ); } }