1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 21:54:02 +00:00

Fix issues

This commit is contained in:
j.stein 2022-02-12 16:53:23 +01:00
parent 0a37eb487a
commit 7bb05873f0
2 changed files with 4 additions and 3 deletions

View file

@ -27,9 +27,9 @@ trait HasATenantsOption
->cursor();
}
protected function withPending(): bool
protected function withPending(): ?bool
{
return $this->option('with-pending');
return $this->option('with-pending') ? true : null;
}
public function __construct()