Skip to content

Commit d1135b9

Browse files
committed
cs: iterator aggregate phpdoc
1 parent 8adf37f commit d1135b9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Laravel/Eloquent/Paginator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
use ApiPlatform\State\Pagination\HasNextPagePaginatorInterface;
1717
use ApiPlatform\State\Pagination\PaginatorInterface;
1818
use Illuminate\Pagination\LengthAwarePaginator;
19-
use IteratorAggregate;
2019

2120
/**
22-
* @implements IteratorAggregate<mixed,object>
21+
* @implements \IteratorAggregate<mixed,object>
2322
* @implements PaginatorInterface<object>
2423
*/
2524
final class Paginator implements PaginatorInterface, HasNextPagePaginatorInterface, \IteratorAggregate

src/Laravel/Eloquent/PartialPaginator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@
1515

1616
use ApiPlatform\State\Pagination\PartialPaginatorInterface;
1717
use Illuminate\Pagination\AbstractPaginator;
18-
use IteratorAggregate;
1918

2019
/**
21-
* @implements IteratorAggregate<mixed,object>
20+
* @implements \IteratorAggregate<mixed,object>
2221
* @implements PartialPaginatorInterface<object>
2322
*/
2423
final class PartialPaginator implements PartialPaginatorInterface, \IteratorAggregate

0 commit comments

Comments
 (0)