feat: update filter value to be inversed
closes #869bhe07h
This commit is contained in:
@@ -18,7 +18,7 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
protected array $status = [];
|
||||
protected bool $includePast = false;
|
||||
protected ?string $country = null;
|
||||
protected bool $syncedWithBusProNet = false;
|
||||
protected bool $notSyncedWithBusProNet = false;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
@@ -128,14 +128,14 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isSyncedWithBusProNet(): bool
|
||||
public function isNotSyncedWithBusProNet(): bool
|
||||
{
|
||||
return $this->syncedWithBusProNet;
|
||||
return $this->notSyncedWithBusProNet;
|
||||
}
|
||||
|
||||
public function setSyncedWithBusProNet(bool $syncedWithBusProNet): static
|
||||
public function setNotSyncedWithBusProNet(bool $notSyncedWithBusProNet): static
|
||||
{
|
||||
$this->syncedWithBusProNet = $syncedWithBusProNet;
|
||||
$this->notSyncedWithBusProNet = $notSyncedWithBusProNet;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user