13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
namespace Incoviba\Common\Ideal;
|
|
|
|
use Incoviba\Common\Define;
|
|
|
|
abstract class Query implements Define\Query
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return $this->build();
|
|
}
|
|
}
|