Files
oficial/app/common/Define/Query.php
2023-11-22 19:08:19 -03:00

16 lines
217 B
PHP

<?php
namespace Incoviba\Common\Define;
interface Query
{
/**
* @return string
*/
public function build(): string;
/**
* @return string
*/
public function __toString(): string;
}