pixelfed/app/Services/ProfileService.php

17 wiersze
206 B
PHP
Czysty Zwykły widok Historia

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);
}
}