for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Lakion package.
*
* (c) Lakion
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Api\Factory;
use Sylius\Api\AdapterInterface;
use Sylius\Api\Paginator;
/**
* @author Michał Marcinkowski <[email protected]>
class PaginatorFactory implements PaginatorFactoryInterface
{
* {@inheritdoc }
public function create(AdapterInterface $adapter, array $queryParameters, array $uriParameters = [])
return new Paginator($adapter, $queryParameters, $uriParameters);
}