id = $id; } public function getId() : int { return $this->id; } /** * Get entry. * * @param int $id Entry ID * * @return void * * @since 1.0.0 */ public function getEntryById($id) { } /** * Get entry. * * @param \DateTime $start Interval start * @param \DateTime $end Interval end * @param int $dateType * * @internal \Modules\Accounting\Models\TimeRangeType $dateTime Time range type * * @since 1.0.0 */ public function getEntriesByDate($start, $end, $dateType = TimeRangeType::RECEIPT_DATE) { } public function getPositiveParent() { return $this->positiveParent; } public function setPositiveParent($parent) { $this->positiveParent = $parent; } public function getNegativeParent() { return $this->negativeParent; } public function setNegativeParent($parent) { $this->negativeParent = $parent; } }