Skip to content

Commit 8686b59

Browse files
Use static instead of self as return type
1 parent 53a290f commit 8686b59

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Filter/InAndNotInUtils.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function getColumn(): array|string
2929
*
3030
* @return $this
3131
*/
32-
public function setColumn(array|string $column): self
32+
public function setColumn(array|string $column): static
3333
{
3434
$this->column = $column;
3535

@@ -53,7 +53,7 @@ public function getValue(): Select
5353
*
5454
* @return $this
5555
*/
56-
public function setValue(Select $value): self
56+
public function setValue(Select $value): static
5757
{
5858
$this->value = $value;
5959

0 commit comments

Comments
 (0)