X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/010e38c2810846d5812a0ec91df98cddfdef8de4..6d87d1dbad7e333cd41b57c641515ae05a7653f3:/Entity/Slot.php diff --git a/Entity/Slot.php b/Entity/Slot.php index 10e5b3d..c5fcd86 100644 --- a/Entity/Slot.php +++ b/Entity/Slot.php @@ -161,9 +161,9 @@ class Slot { */ public function preUpdate(PreUpdateEventArgs $eventArgs) { //Check that we have a slot instance - if (($user = $eventArgs->getEntity()) instanceof Slot) { + if (($slot = $eventArgs->getEntity()) instanceof Slot) { //Set updated value - $user->setUpdated(new \DateTime('now')); + $slot->setUpdated(new \DateTime('now')); } }