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.
2 parents 97adb4e + cd000b4 commit 283f572Copy full SHA for 283f572
src/Driver/Test/TestTableEntry.php
@@ -73,6 +73,8 @@ public function matchesWhereCondition(WhereCondition $where): bool
73
"<=" => $dataValue <= $whereValue,
74
"like" => $this->matchesLike($whereValue, $dataValue),
75
"not like" => !$this->matchesLike($whereValue, $dataValue),
76
+ "in" => in_array($dataValue, $whereValue, true),
77
+ "not in" => !in_array($dataValue, $whereValue, true),
78
default => false,
79
};
80
}
0 commit comments