From 4db082883a2f53a0e5f1faef0ad29db241503aee Mon Sep 17 00:00:00 2001 From: Erik Gaal Date: Sat, 24 Sep 2022 20:26:14 +0200 Subject: [PATCH] Remove @inherit-doc --- src/Repository/IlluminateTenantRepository.php | 6 ------ 1 file changed, 6 deletions(-) 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();