Renamed filter attributes in time entry endpoints

This commit is contained in:
Constantin Graf
2024-05-21 17:42:32 +02:00
parent 2a8ab12017
commit 2e710795ec
6 changed files with 33 additions and 33 deletions

View File

@@ -25,7 +25,7 @@ class TimeEntryFilter
$this->builder = $builder;
}
public function addBeforeFilter(?string $dateTime): self
public function addEndFilter(?string $dateTime): self
{
if ($dateTime === null) {
return $this;
@@ -35,7 +35,7 @@ class TimeEntryFilter
return $this;
}
public function addAfterFilter(?string $dateTime): self
public function addStartFilter(?string $dateTime): self
{
if ($dateTime === null) {
return $this;