pixelfed/app/Services/ProfileService.php

17 lines
206 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)
2019-02-14 21:23:33 +00:00
{
return AccountService::get($id);
2019-02-14 21:23:33 +00:00
}
public static function del($id)
{
return AccountService::del($id);
}
}