2019-02-14 14:23:33 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2021-07-26 18:47:40 -06:00
|
|
|
class ProfileService
|
|
|
|
{
|
2023-05-08 22:45:57 -06:00
|
|
|
public static function get($id, $softFail = false)
|
2019-02-14 14:23:33 -07:00
|
|
|
{
|
2023-05-08 22:45:57 -06:00
|
|
|
return AccountService::get($id, $softFail);
|
2019-02-14 14:23:33 -07:00
|
|
|
}
|
|
|
|
|
2021-07-26 18:47:40 -06:00
|
|
|
public static function del($id)
|
|
|
|
{
|
|
|
|
return AccountService::del($id);
|
|
|
|
}
|
2021-05-01 13:35:47 -06:00
|
|
|
}
|