Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (11 loc) · 398 Bytes

rector_rules_overview.md

File metadata and controls

18 lines (11 loc) · 398 Bytes

1 Rules Overview

ParserFactoryRector

Upgrade ParserFactory create() method

 use PhpParser\ParserFactory;

 $factory = new ParserFactory;

-$parser = $factory->create(ParserFactory::PREFER_PHP7);
+$parser = $factory->createForNewestSupportedVersion();