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 15d61bb commit fd19fb5Copy full SHA for fd19fb5
src/Magento/FunctionalTestingFramework/Test/Objects/ActionObject.php
@@ -437,7 +437,7 @@ private function getMissingReferences($replacement): array
437
preg_match_all($mustachePattern, $replacement, $matches);
438
439
return array_filter($matches[1], function ($match) {
440
- return false === strpos($match, '_ENV.');
+ return !empty($match) && false === strpos($match, '_ENV.');
441
});
442
}
443
0 commit comments