mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 05:44:53 +00:00
37dad63dee
- Fixes #45 - Renamed getSingle to getValue to avoid possible confusion - Added test to ensure getValue() always returns the first datum of each row rather than going column-to-column
16 lines
No EOL
305 B
PHP
16 lines
No EOL
305 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\NewsSync\Db;
|
|
|
|
interface Result extends \Iterator {
|
|
function current();
|
|
function key();
|
|
function next();
|
|
function rewind();
|
|
function valid();
|
|
|
|
function get();
|
|
function getAll();
|
|
function getValue();
|
|
function changes();
|
|
} |