From 07aad4c7aade753b6157379689cea0403d97f457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Thu, 5 May 2022 15:38:36 +0200 Subject: [PATCH] add methods for ActionEvent on PersonMove --- src/Bundle/ChillPersonBundle/Actions/ActionEvent.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Actions/ActionEvent.php b/src/Bundle/ChillPersonBundle/Actions/ActionEvent.php index 5ac3055cb..72f85f2ad 100644 --- a/src/Bundle/ChillPersonBundle/Actions/ActionEvent.php +++ b/src/Bundle/ChillPersonBundle/Actions/ActionEvent.php @@ -139,5 +139,9 @@ class ActionEvent extends Event { return $this->metadata; } - + + public function setSQLStatement(string $sqlStatement) + { + $this->sqlStatement = $sqlStatement; + } }