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.
| 1 | <?php |
||
| 20 | class Pager implements PagerInterface |
||
| 21 | { |
||
| 22 | /** @var HttpPluginClientBuilder */ |
||
| 23 | private $httpPluginClientBuilder; |
||
| 24 | /** @var MessageFactory */ |
||
| 25 | private $messageFactory; |
||
| 26 | /** @var ResponseInterface */ |
||
| 27 | private $response; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param HttpPluginClientBuilder $httpPluginClientBuilder |
||
| 31 | * @param ResponseInterface $response |
||
| 32 | * @param MessageFactory $messageFactory |
||
| 33 | 10 | * |
|
| 34 | * @throws \UnexpectedValueException |
||
| 35 | */ |
||
| 36 | 10 | public function __construct( |
|
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritDoc} |
||
| 53 | */ |
||
| 54 | public function hasNext() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * {@inheritDoc} |
||
| 61 | */ |
||
| 62 | public function hasPrevious() |
||
| 66 | 2 | ||
| 67 | 2 | /** |
|
| 68 | * {@inheritDoc} |
||
| 69 | */ |
||
| 70 | 2 | public function fetchNext() |
|
| 80 | 1 | ||
| 81 | /** |
||
| 82 | * {@inheritDoc} |
||
| 83 | 1 | */ |
|
| 84 | public function fetchPrevious() |
||
| 94 | |||
| 95 | 3 | /** |
|
| 96 | 3 | * {@inheritDoc} |
|
| 97 | 2 | */ |
|
| 98 | public function fetchAll() |
||
| 130 | 7 | ||
| 131 | /** |
||
| 132 | 7 | * {@inheritDoc} |
|
| 133 | */ |
||
| 134 | 6 | public function getCurrent() |
|
| 138 | |||
| 139 | 6 | /** |
|
| 140 | * @access private |
||
| 141 | * @return array |
||
| 142 | 1 | */ |
|
| 143 | private function getContent() |
||
| 160 | } |
||
| 161 |