From b87d434db847ab83d64d069495bcfde47dd60a1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20P=C3=B6hler?= Date: Sun, 23 Jun 2024 13:59:31 +0200 Subject: [PATCH] docs: README, add remove method --- src/Repository/EntityRepositoryInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Repository/EntityRepositoryInterface.php b/src/Repository/EntityRepositoryInterface.php index a1fd019..7e5d438 100644 --- a/src/Repository/EntityRepositoryInterface.php +++ b/src/Repository/EntityRepositoryInterface.php @@ -16,4 +16,6 @@ public function findAll(): ?Collection; public function findOneBy(array $criteria): ?EntityInterface; public function findBy(array $criteria): ?Collection; + + public function remove(string $id): void; }