Namespaces changes

This commit is contained in:
2025-09-30 17:15:39 -03:00
parent ed45901de2
commit d2c37d0aad
24 changed files with 289 additions and 217 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Database\Define\Database;
use PDOStatement;
interface ResultSet
{
public function getStatement(): PDOStatement;
public function execute(array $data): self;
public function fetchFirst(): array;
public function fetchAll(): array;
public function fetchFirstAsObject(): object;
public function fetchAllAsObjects(): array;
}