This commit is contained in:
Dennis Eichhorn 2021-11-28 20:02:55 +01:00
parent 44ea04b2c6
commit 77f099559b

View File

@ -32,8 +32,11 @@ abstract class DataMapperAbstract
protected int $type = 0; protected int $type = 0;
protected array $with = []; protected array $with = [];
protected array $sort = []; protected array $sort = [];
protected array $limit = []; protected array $limit = [];
protected array $where = []; protected array $where = [];
/** /**
@ -186,5 +189,5 @@ abstract class DataMapperAbstract
return $value; return $value;
} }
abstract function execute(...$options); abstract public function execute(...$options);
} }