mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
17 lines
236 B
PHP
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);
|
|
}
|
|
}
|