We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | interface PagerInterface |
||
18 | { |
||
19 | /** |
||
20 | * @access public |
||
21 | * @return bool |
||
22 | */ |
||
23 | public function hasNext(); |
||
24 | |||
25 | /** |
||
26 | * @access public |
||
27 | * @return bool |
||
28 | */ |
||
29 | public function hasPrevious(); |
||
30 | |||
31 | /** |
||
32 | * Fetch next page and return http response |
||
33 | * |
||
34 | * @access public |
||
35 | * @return MessageInterface|null |
||
36 | */ |
||
37 | public function fetchNext(); |
||
38 | |||
39 | /** |
||
40 | * Fetch previous page and return http response |
||
41 | * |
||
42 | * @access public |
||
43 | * @return MessageInterface|null |
||
44 | */ |
||
45 | public function fetchPrevious(); |
||
46 | |||
47 | /** |
||
48 | * Fetch all available pages. |
||
49 | * |
||
50 | * @access public |
||
51 | * @return MessageInterface |
||
52 | */ |
||
53 | public function fetchAll(); |
||
54 | |||
55 | /** |
||
56 | * Get current http response. |
||
57 | * |
||
58 | * @access public |
||
59 | * @return MessageInterface |
||
60 | */ |
||
61 | public function getCurrent(); |
||
62 | } |
||
63 |