protected function EntityQueryTest::assertIdentical in MongoDB 8
File
- src/
Tests/ Entity/ EntityQueryTest.php, line 16
Class
- EntityQueryTest
- Tests the basic MongoDB Entity API.
Namespace
Drupal\mongodb\Tests\EntityCode
protected function assertIdentical($first, $second, $message = '', $group = 'Other') {
if (is_array($second)) {
$second = array_map('intval', $second);
}
return parent::assertIdentical($first, $second, $message, $group);
}