Update ProfileService, add softFail param

pull/4363/head
Daniel Supernault 2 years ago
parent f48daab37e
commit 6bc20a37ed
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -4,9 +4,9 @@ namespace App\Services;
class ProfileService class ProfileService
{ {
public static function get($id) public static function get($id, $softFail = false)
{ {
return AccountService::get($id); return AccountService::get($id, $softFail);
} }
public static function del($id) public static function del($id)

Loading…
Cancel
Save