14 lines
278 B
PHP
14 lines
278 B
PHP
|
|
<?php
|
||
|
|
namespace App\Repositories\Api\Access\Request;
|
||
|
|
|
||
|
|
interface RequestInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function sendFriendRequest(array $data);
|
||
|
|
|
||
|
|
public function acceptFriendRequest(array $data);
|
||
|
|
|
||
|
|
public function listFriendRequest();
|
||
|
|
|
||
|
|
public function sentRequestList();
|
||
|
|
}
|