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