Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: RuleErrorWithMessage.php
<?php declare(strict_types = 1); namespace PHPStan\Rules\RuleErrors; use PHPStan\Rules\RuleError; class RuleErrorWithMessage implements RuleError { /** @var string */ private $message; public function __construct(string $message) { $this->message = $message; } public function getMessage(): string { return $this->message; } }