-
Notifications
You must be signed in to change notification settings - Fork 0
/
IResource.php
62 lines (52 loc) · 986 Bytes
/
IResource.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace MailRoute\API;
interface IResource
{
/**
* @param string $id
* @return IActiveEntity|IActiveEntity[]
*/
public function get($id = '');
/**
* @param array|object $data
* @return IActiveEntity
*/
public function create($data);
/**
* @param array|object $data
* @return IActiveEntity
*/
public function update($data);
/**
* @param int|string $id
* @return boolean
*/
public function delete($id);
/**
* @param int $limit
* @return IResource
*/
public function limit($limit);
/**
* @param int $offset
* @return IResource
*/
public function offset($offset);
/**
* @param array $filter_map
* @return IResource
*/
public function filter(array $filter_map);
/** @return IActiveEntity[] */
public function fetchList();
/**
* @param string $word
* @return IActiveEntity[]
*/
public function search($word);
/**
* @param array $data
* @return IActiveEntity[]
*/
public function bulkCreate($data);
}