wanghousheng 10 months ago
parent 2693ce83ed
commit 8acaecff9a
  1. 5
      app/store/model/user/Identity.php

@ -38,6 +38,9 @@ class Identity extends BaseIdentity
*/
public function remove(array $IdentityId): bool
{
return static::whereIn('identity_id', $IdentityId)->delete();
if (static::whereIn('identity_id', $IdentityId)->delete()) {
return true;
}
return false;
}
}
Loading…
Cancel
Save