| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class ADORecordSet extends ADODBRecordsetClass implements Countable, Interfaces\RecordSet |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Returns the recordCount. |
||
| 20 | */ |
||
| 21 | public function count(): int |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * synonyms RecordCount and RowCount. |
||
| 28 | * |
||
| 29 | * @return int number of rows or -1 if this is not supported |
||
| 30 | */ |
||
| 31 | public function RecordCount() |
||
| 32 | { |
||
| 33 | return $this->count(); |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Returns the recordCount. |
||
| 38 | * |
||
| 39 | * @param int $fieldoffset |
||
| 40 | * |
||
| 41 | * @return ADOFieldObject the field |
||
| 42 | */ |
||
| 43 | public function FetchField($fieldoffset = -1): ADOFieldObject |
||
| 44 | { |
||
| 45 | return parent::FetchField(); |
||
| 46 | } |
||
| 47 | |||
| 48 | public function MoveNext():void { |
||
| 50 | } |
||
| 51 | } |
||
| 52 |