From 32dcab759245384411805f201d2134c00de83900 Mon Sep 17 00:00:00 2001 From: tracer Date: Wed, 26 Oct 2022 12:47:42 +0200 Subject: [PATCH] removed owner in update, we don't use it --- src/Repository/AddressRepository.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Repository/AddressRepository.php b/src/Repository/AddressRepository.php index 3179dd8..01e501a 100644 --- a/src/Repository/AddressRepository.php +++ b/src/Repository/AddressRepository.php @@ -105,7 +105,6 @@ class AddressRepository public function update(AddressBookEntry $address): bool|int { $id = $address->getId(); - $owner = $address->getOwner(); $first = $address->getFirst(); $last = $address->getLast(); $street = $address->getStreet();