1
0
Fork 0
pixelfed/app/Services/ProfileService.php

17 lines
236 B
PHP
Raw Normal View History

2019-02-14 21:23:33 +00:00
<?php
namespace App\Services;
class ProfileService
{
public static function get($id, $softFail = false)
2019-02-14 21:23:33 +00:00
{
return AccountService::get($id, $softFail);
2019-02-14 21:23:33 +00:00
}
public static function del($id)
{
return AccountService::del($id);
}
}