Reverse orderof parent

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-08-28 20:51:52 +01:00
parent baffcbad71
commit 18ff810d7e

View file

@ -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);
}
}