Skip to content

Commit 4458e21

Browse files
committed
Run lint:fix
1 parent 7d529b9 commit 4458e21

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Contracts/TasksQuery.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ class TasksQuery
2222
*/
2323
private ?array $canceledBy = null;
2424

25-
/**
26-
* @var bool|null
27-
*/
2825
private ?bool $reverse = null;
2926

3027
/**
@@ -78,7 +75,7 @@ public function toArray(): array
7875
'from' => $this->from,
7976
'limit' => $this->limit,
8077
'canceledBy' => $this->formatArray($this->canceledBy),
81-
'reverse' => $this->reverse !== null ? json_encode($this->reverse) : null,
78+
'reverse' => null !== $this->reverse ? json_encode($this->reverse) : null,
8279
]
8380
), static function ($item) { return null !== $item; }
8481
);

0 commit comments

Comments
 (0)