mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-17 20:11:27 +00:00
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);
|
|
}
|
|
}
|