Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jun 6, 2023
1 parent de2566a commit 3fc3bff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/generate-function-metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
use PHPStan\File\FileReader;
use PHPStan\File\FileWriter;
use PHPStan\ShouldNotHappenException;
use Symfony\Component\Finder\Finder;

(function (): void {
require_once __DIR__ . '/../vendor/autoload.php';

$parser = (new ParserFactory())->create(ParserFactory::ONLY_PHP7);
$finder = new Symfony\Component\Finder\Finder();
$finder = new Finder();
$finder->in(__DIR__ . '/../vendor/jetbrains/phpstorm-stubs')->files()->name('*.php');

$visitor = new class() extends NodeVisitorAbstract {
Expand Down

0 comments on commit 3fc3bff

Please sign in to comment.