Update namespaces

This commit is contained in:
2025-09-29 16:40:43 -03:00
parent bc3421942f
commit f07ad79e75
66 changed files with 509 additions and 274 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Database\Define\Query;
use Database\Define\Query;
interface Select extends Query
{
public function columns(array|string $columns = '*'): self;
public function from(string $table): self;
public function joined(array|string $joins): self;
public function where(array|string $conditions): self;
public function groupBy(array|string $grouping): self;
public function having(array|string $having): self;
public function orderBy(array|string $ordering): self;
}