Micro-ORM/app/Query/IJobQuery.php

9 lines
149 B
PHP
Raw Normal View History

2021-02-27 23:04:16 +00:00
<?php
namespace App\Query;
use Fufle\ORM\IQuery as IBaseQuery;
interface IJobQuery extends IBaseQuery {
public function GetLast10(): string;
}