Reorder and new queries, also change to Query/Builder
This commit is contained in:
12
src/Implement/Database/Query.php
Normal file
12
src/Implement/Database/Query.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace ProVM\Implement\Database;
|
||||
|
||||
use ProVM\Concept\Database;
|
||||
|
||||
abstract class Query implements Database\Query
|
||||
{
|
||||
public function __toString(): string
|
||||
{
|
||||
return $this->build();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user