| 1 | <?php namespace Stevenmaguire\Services\Trello\Traits; |
||
| 3 | trait SearchTrait |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Retrieves currently configured http broker. |
||
| 7 | * |
||
| 8 | * @return Stevenmaguire\Services\Trello\Http |
||
| 9 | * @codeCoverageIgnore |
||
| 10 | */ |
||
| 11 | abstract public function getHttp(); |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Retrieves http response from Trello api for search query. |
||
| 15 | * |
||
| 16 | * @param array $attributes |
||
| 17 | * |
||
| 18 | * @return object |
||
| 19 | */ |
||
| 20 | 2 | public function getSearch($attributes = []) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Retrieves http response from Trello api for member search query. |
||
| 27 | * |
||
| 28 | * @param array $attributes |
||
| 29 | * |
||
| 30 | * @return object |
||
| 31 | */ |
||
| 32 | 2 | public function getSearchMembers($attributes = []) |
|
| 36 | } |
||
| 37 |