pixelfed/app/Services/ProfileService.php
2023-05-08 22:45:57 -06:00

17 lines
236 B
PHP

<?php
namespace App\Services;
class ProfileService
{
public static function get($id, $softFail = false)
{
return AccountService::get($id, $softFail);
}
public static function del($id)
{
return AccountService::del($id);
}
}