| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class AuraSqlQueryPagerFactory implements AuraSqlQueryPagerFactoryInterface |
||
| 11 | { |
||
| 12 | private AuraSqlQueryPagerInterface $auraSqlQueryPager; |
||
| 13 | |||
| 14 | public function __construct(AuraSqlQueryPagerInterface $auraSqlQueryPager) |
||
| 15 | { |
||
| 16 | $this->auraSqlQueryPager = $auraSqlQueryPager; |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritDoc} |
||
| 21 | */ |
||
| 22 | public function newInstance(ExtendedPdoInterface $pdo, SelectInterface $select, $paging, $uriTemplate) |
||
| 27 | } |
||
| 28 | } |
||
| 29 |