From 18ff810d7e92f317f17096d174534ef16f9abfd8 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 28 Aug 2023 20:51:52 +0100 Subject: [PATCH] Reverse orderof parent Signed-off-by: snipe --- app/Models/SCIMUser.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/SCIMUser.php b/app/Models/SCIMUser.php index efb38f3765..97258a6e93 100644 --- a/app/Models/SCIMUser.php +++ b/app/Models/SCIMUser.php @@ -9,7 +9,8 @@ class SCIMUser extends User protected $throwValidationExceptions = true; // we want model-level validation to fully THROW, not just return false public function __construct(array $attributes = []) { - parent::__construct($attributes); $this->noPassword(); + parent::__construct($attributes); + } } \ No newline at end of file