13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
namespace ProVM\Implement\Database;
|
|
|
|
use ProVM\Concept\Database;
|
|
|
|
abstract class Query implements Database\Query
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return $this->build();
|
|
}
|
|
}
|