mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 23:16:03 +00:00
14 lines
215 B
PHP
14 lines
215 B
PHP
<?php
|
|
|
|
class MockDBResult extends ArrayIterator
|
|
{
|
|
public function fetchAll()
|
|
{
|
|
$arr = array();
|
|
foreach ($this as $value) {
|
|
$arr[] = $value;
|
|
}
|
|
return $arr;
|
|
}
|
|
}
|