Fix styling issues

This commit is contained in:
David Arendsen 2023-02-10 11:46:54 +01:00
commit 2e349f4dec
3 changed files with 31 additions and 31 deletions

View file

@ -105,11 +105,11 @@ trait Universe
return $this;
}
public function addLast(string $column = '_value'): QueryBuilderInterface
{
$this->addToQuery(
new Last($column)
);
return $this;
}
public function addLast(string $column = '_value'): QueryBuilderInterface
{
$this->addToQuery(
new Last($column)
);
return $this;
}
}