minor #38138 [Translation] fix parsing tokens on PHP 8 (xabbuh)

This PR was merged into the 5.2-dev branch.

Discussion
----------

[Translation] fix parsing tokens on PHP 8

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

Commits
-------

1d1194e973 fix parsing tokens on PHP 8
This commit is contained in:
Tobias Schultze 2020-09-10 11:38:32 +02:00
commit 38e414003c

View File

@ -87,6 +87,16 @@ class PhpExtractor extends AbstractFileExtractor implements ExtractorInterface
',',
self::DOMAIN_TOKEN,
],
[
'new',
'\Symfony\Component\Translation\Translatable',
'(',
self::MESSAGE_TOKEN,
',',
self::METHOD_ARGUMENTS_TOKEN,
',',
self::DOMAIN_TOKEN,
],
[
'new',
'\\',
@ -100,6 +110,12 @@ class PhpExtractor extends AbstractFileExtractor implements ExtractorInterface
'(',
self::MESSAGE_TOKEN,
],
[
'new',
'\Symfony\Component\Translation\Translatable',
'(',
self::MESSAGE_TOKEN,
],
[
't',
'(',