14 lines
319 B
PHP
14 lines
319 B
PHP
![]() |
<?php
|
||
|
namespace ProVM\Concept\Database;
|
||
|
|
||
|
use PDOStatement;
|
||
|
|
||
|
interface ResultSet
|
||
|
{
|
||
|
public function __construct(PDOStatement $statement);
|
||
|
public function execute(array $values): ResultSet;
|
||
|
public function getAsArray(): array;
|
||
|
public function getAsObject(): array;
|
||
|
public function getFirst(): mixed;
|
||
|
}
|