Skip to content

Commit c0eb495

Browse files
committed
add check for null values
1 parent e809520 commit c0eb495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Util/TestGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ private function resolveRuntimeReference($args, $regex, $func)
20972097

20982098
foreach ($args as $key => $arg) {
20992099
$newArgs[$key] = $arg;
2100-
if($arg !== null) {
2100+
if ($arg !== null) {
21012101
preg_match_all($regex, $arg, $matches);
21022102
if (!empty($matches[0])) {
21032103
foreach ($matches[0] as $matchKey => $fullMatch) {

0 commit comments

Comments
 (0)