This commit is contained in:
Michał Sieciechowicz 2021-02-27 11:32:32 +01:00
parent 26679ace12
commit 1e2bb29955
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ abstract class BaseModel {
abstract public static function Initialize();
}
interface IJobSql implements ISqlBase {
interface IJobSql extends ISqlBase {
public function GetLast10(): string;
}
class JobSql implements IJobSql {