This commit is contained in:
Michał Sieciechowicz 2021-02-26 22:11:56 +01:00
parent 4dda06bc5f
commit 231710e996
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
<?php
namespace Sieciech\Orm8;
interface ISqlBase {
public function Get(): string;
//public function Insert(): string;
@ -34,5 +36,10 @@ class Job extends BaseModel {
parent::__construct( new JobSql() );
}
}
echo "
";
echo Job::Get(10);
echo "
";