You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor symfony#53475 [Translation] simplify the parser factory creation (xabbuh)
This PR was merged into the 6.3 branch.
Discussion
----------
[Translation] simplify the parser factory creation
| Q | A
| ------------- | ---
| Branch? | 6.3
| Bug fix? | no
| New feature? | no
| Deprecations? | no
| Issues | continuation of symfony#53453
| License | MIT
Commits
-------
509ca9b simplify the parser factory creation
Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Extractor/PhpAstExtractor.php
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -39,11 +39,7 @@ public function __construct(
39
39
thrownew \LogicException(sprintf('You cannot use "%s" as the "nikic/php-parser" package is not installed. Try running "composer require nikic/php-parser".', static::class));
40
40
}
41
41
42
-
if (method_exists(ParserFactory::class, 'createForHostVersion')) {
0 commit comments