This commit is contained in:
Dennis Eichhorn 2020-04-12 15:59:58 +02:00
commit b8a2d4c31a

View File

@ -19,7 +19,6 @@ use Modules\Calendar\Models\ScheduleMapper;
use Modules\Media\Models\MediaMapper;
use phpOMS\DataStorage\Database\DataMapperAbstract;
use phpOMS\DataStorage\Database\Query\Builder;
use phpOMS\DataStorage\Database\RelationType;
/**
* Mapper class.
@ -132,14 +131,6 @@ final class TaskMapper extends DataMapperAbstract
*/
protected static string $primaryField = 'task_id';
/**
* {@inheritdoc}
*/
public static function get($primaryKey, int $relations = RelationType::ALL, int $depth = 3, string $ref = null, Builder $query = null)
{
return parent::get($primaryKey, $relations, $depth, $ref, $query);
}
/**
* Get open tasks by createdBy
*