mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-29 15:36:07 +00:00
15 lines
192 B
PHP
15 lines
192 B
PHP
<?php
|
|
|
|
class MockDBResult extends ArrayIterator
|
|
{
|
|
public function fetchAll()
|
|
{
|
|
$arr = array();
|
|
foreach ($this as $value) {
|
|
$arr[] = $value;
|
|
}
|
|
return $arr;
|
|
}
|
|
}
|
|
|
|
?>
|