-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
PagerFactoryInterface
for API Platform (#44)
- Loading branch information
Showing
7 changed files
with
75 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
packages/rekapager-api-platform/src/PagerFactoryInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of rekalogika/rekapager package. | ||
* | ||
* (c) Priyadi Iman Nurcahyo <https://rekalogika.dev> | ||
* | ||
* For the full copyright and license information, please view the LICENSE file | ||
* that was distributed with this source code. | ||
*/ | ||
|
||
namespace Rekalogika\Rekapager\ApiPlatform; | ||
|
||
use ApiPlatform\Metadata\Operation; | ||
use Rekalogika\Contracts\Rekapager\PageableInterface; | ||
use Rekalogika\Contracts\Rekapager\PageInterface; | ||
use Rekalogika\Rekapager\Contracts\TraversablePagerInterface; | ||
|
||
interface PagerFactoryInterface | ||
{ | ||
/** | ||
* @template TKey of array-key | ||
* @template T | ||
* @template TIdentifier of object | ||
* @param PageableInterface<TKey,T,TIdentifier> $pageable | ||
* @param array<array-key,mixed> $context | ||
* @return PageInterface<TKey,T,TIdentifier> | ||
*/ | ||
public function getPage( | ||
PageableInterface $pageable, | ||
?Operation $operation = null, | ||
array $context = [] | ||
): PageInterface; | ||
|
||
/** | ||
* @template TKey of array-key | ||
* @template T | ||
* @template TIdentifier of object | ||
* @param PageableInterface<TKey,T,TIdentifier> $pageable | ||
* @param array<array-key,mixed> $context | ||
* @return TraversablePagerInterface<TKey,T,TIdentifier> | ||
*/ | ||
public function createPager( | ||
PageableInterface $pageable, | ||
?Operation $operation = null, | ||
array $context = [], | ||
): TraversablePagerInterface; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters