Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: PathNotFoundException.php
<?php declare(strict_types = 1); namespace PHPStan\File; class PathNotFoundException extends \Exception { /** @var string */ private $path; public function __construct(string $path) { parent::__construct(sprintf('Path %s does not exist', $path)); $this->path = $path; } public function getPath(): string { return $this->path; } }