From 9d7044dabfe9de6cd2ddf93494446d53f0630924 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Tue, 15 Oct 2024 12:09:43 -0300 Subject: [PATCH] feat(contract): add PropertyChangeApplier interface to define change application behavior - Introduce `PropertyChangeApplier` interface to define the contract for applying processed changes to entities - Ensure consistent behavior for classes that modify entity properties, starting with `AttributeHandler` --- src/Contract/PropertyChangeApplier.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Contract/PropertyChangeApplier.php diff --git a/src/Contract/PropertyChangeApplier.php b/src/Contract/PropertyChangeApplier.php new file mode 100644 index 0000000..0c47981 --- /dev/null +++ b/src/Contract/PropertyChangeApplier.php @@ -0,0 +1,20 @@ +