2022-09-08 18:11:46 -04:00
|
|
|
<?php
|
|
|
|
namespace ProVM\Concept\Database;
|
|
|
|
|
|
|
|
interface ResultSet
|
|
|
|
{
|
2023-02-28 23:41:51 -03:00
|
|
|
public function execute(array $data): ResultSet;
|
|
|
|
|
|
|
|
public function fetchFirst(): array;
|
|
|
|
public function fetchAll(): array;
|
|
|
|
public function fetchFirstAsObject(): object;
|
|
|
|
public function fetchAllAsObjects(): array;
|
2022-09-08 18:11:46 -04:00
|
|
|
}
|