Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | trait SearchTrait |
||
6 | { |
||
7 | /** |
||
8 | * Retrieves currently configured http broker. |
||
9 | * |
||
10 | * @return Stevenmaguire\Services\Trello\Http |
||
|
|||
11 | * @codeCoverageIgnore |
||
12 | */ |
||
13 | abstract public function getHttp(); |
||
14 | |||
15 | /** |
||
16 | * Retrieves http response from Trello api for search query. |
||
17 | * |
||
18 | * @param array $attributes |
||
19 | * |
||
20 | 2 | * @return object |
|
21 | */ |
||
22 | 2 | public function getSearch($attributes = []) |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * Retrieves http response from Trello api for member search query. |
||
29 | * |
||
30 | * @param array $attributes |
||
31 | * |
||
32 | 2 | * @return object |
|
33 | */ |
||
34 | 2 | public function getSearchMembers($attributes = []) |
|
39 |