This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/tests/unit/testData/DB/MockDBResult.php
T
2016-09-13 16:20:42 +03:00

15 lines
226 B
PHP

<?php
class MockDBResult extends ArrayIterator
{
public function fetchAll()
{
$arr = array();
foreach ($this as $value) {
$arr[] = $value;
}
return $arr;
}
}
?>