2022-09-08 17:40:03 -04:00
|
|
|
<?php
|
|
|
|
namespace ProVM\Concept\Database\Query;
|
|
|
|
|
|
|
|
use ProVM\Concept\Database\Query;
|
|
|
|
|
|
|
|
interface Update extends Query
|
|
|
|
{
|
|
|
|
public function table(string $table): Update;
|
2023-02-28 23:47:02 -03:00
|
|
|
public function set(array|string $value_pairs): Update;
|
|
|
|
public function where(array|string $conditions): Update;
|
2022-09-08 17:40:03 -04:00
|
|
|
}
|