Files
oficial/app/common/Ideal/Query.php

13 lines
202 B
PHP
Raw Normal View History

2023-11-22 19:08:19 -03:00
<?php
namespace Incoviba\Common\Ideal;
use Incoviba\Common\Define;
abstract class Query implements Define\Query
{
public function __toString(): string
{
return $this->build();
}
}