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
2020-09-03 10:35:10 +03:00

14 lines
215 B
PHP

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