ProfileService.php 236 B

12345678910111213141516
  1. <?php
  2. namespace App\Services;
  3. class ProfileService
  4. {
  5. public static function get($id, $softFail = false)
  6. {
  7. return AccountService::get($id, $softFail);
  8. }
  9. public static function del($id)
  10. {
  11. return AccountService::del($id);
  12. }
  13. }