This commit is contained in:
Michał Sieciechowicz 2021-02-27 09:35:47 +01:00
parent dbe6800757
commit b39c293b97
1 changed files with 4 additions and 6 deletions

View File

@ -43,15 +43,13 @@ class JobSql implements ISqlBase {
public function Get(): string {
return "Select * from jobs where id = :id";
}
public static function Create() {
return new Job();
}
}
class Job extends BaseModel {
private static $sql = JobSql::Create();
public function __construct() {
parent::__construct( new JobSql() );
public static function Initialize() {
if (self::$sql === null) {
self::$sql = new JobSql();
}
}
}
$dns = 'pgsql:host=localhost;port=5432;dbname=dynamic_dev;user=test;password=pass123';