diff --git a/src/Repository/IlluminateTenantRepository.php b/src/Repository/IlluminateTenantRepository.php index c73d50b3..ca42b1df 100644 --- a/src/Repository/IlluminateTenantRepository.php +++ b/src/Repository/IlluminateTenantRepository.php @@ -28,17 +28,11 @@ class IlluminateTenantRepository implements TenantRepository ->first(); } - /** - * @inheritDoc - */ public function all(): iterable { return $this->query()->cursor(); } - /** - * @inheritDoc - */ public function whereKeyIn(string|int ...$ids): iterable { return $this->query()->whereKey($ids)->cursor();