employee = new NullEmployee(); $this->start = new \DateTime('now'); $this->unit = new NullUnit(); $this->department = new NullDepartment(); $this->position = new NullPosition(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'employee' => $this->employee->id, 'unit' => $this->unit, 'department' => $this->department, 'position' => $this->position, 'start' => $this->start, 'end' => $this->end, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } use \Modules\Media\Models\MediaListTrait; }