for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Ray.AuraSqlModule package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace Ray\AuraSqlModule;
use Ray\AuraSqlModule\Pagerfanta\AuraSqlQueryPagerFactoryInterface;
trait AuraSqlQueryPagerInject
{
* @var AuraSqlQueryPagerFactoryInterface
protected $queryPagerFactory;
* @\Ray\Di\Di\Inject
public function setAuraSqlQueryPager(AuraSqlQueryPagerFactoryInterface $queryPagerFactory)
$this->queryPagerFactory = $queryPagerFactory;
}