forked from mirror/pixelfed
16 lines
236 B
PHP
16 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);
|
|
}
|
|
}
|