This commit is contained in:
Michał Sieciechowicz 2021-02-28 00:53:32 +01:00
parent e441c923d1
commit a348b4c738
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ class JobModel extends BaseModel {
public int $id;
public float $budget;
public static function Initialize() {
if (self::$query === null) {
self::$query = new JobQuery($this);
if (static::$query === null) {
ststic::$query = new JobQuery($this);
}
}
public static function GetLast10() {