2022-09-08 18:11:46 -04:00
|
|
|
<?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;
|
2022-09-12 21:45:14 -03:00
|
|
|
public function getFirstAsArray(): array;
|
|
|
|
public function getFirstAsObject(): object;
|
2022-09-08 18:11:46 -04:00
|
|
|
}
|