We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a56d9 commit d12b596Copy full SHA for d12b596
dev/tools/Magento/Tools/I18n/Parser/Adapter/Php/Tokenizer.php
@@ -67,10 +67,10 @@ public function isMatchingClass($className)
67
$state = 1;
68
$classString = '';
69
while ($token = $this->getNextRealToken()) {
70
- if ($token->isNamespaceSeparator() && ($state != 2)) {
+ if ($token->isNamespaceSeparator() && $state != 2) {
71
$classString .= $token->getValue();
72
$state = 2;
73
- } elseif ($token->isIdentifier() && ($state != 3)) {
+ } elseif ($token->isIdentifier() && $state != 3) {
74
75
$state = 3;
76
} elseif ($token->isOpenBrace() && $state == 3) {
0 commit comments