| Total Complexity | 5 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait WithRestFullRead |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @inheritDoc |
||
| 13 | */ |
||
| 14 | 1 | public function callPagination(string $link): WorkcastPagination |
|
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritDoc |
||
| 23 | */ |
||
| 24 | 1 | public function list(array $query = []): WorkcastPagination |
|
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritDoc |
||
| 38 | */ |
||
| 39 | 2 | public function get($id): Response |
|
| 48 | } |
||
| 49 | |||
| 50 | abstract public function key():string; |
||
| 51 | } |
||
| 52 |