Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: Parser.php
<?php declare(strict_types = 1); namespace PHPStan\Parser; interface Parser { /** * @param string $file path to a file to parse * @return \PhpParser\Node[] */ public function parseFile(string $file): array; /** * @param string $sourceCode * @return \PhpParser\Node[] */ public function parseString(string $sourceCode): array; }