Файл: onlinepoisk.wm-scripts.ru/vendor/Pagerfanta/Adapter/DoctrineCollectionAdapter.php
Строк: 54
<?php
/*
* This file is part of the Pagerfanta package.
*
* (c) Pablo Díez <pablodip@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PagerfantaAdapter;
use DoctrineCommonCollectionsCollection;
/**
* DoctrineCollectionAdapter.
*
* @author Pablo Díez <pablodip@gmail.com>
*
* @api
*/
class DoctrineCollectionAdapter implements AdapterInterface
{
private $collection;
/**
* Constructor.
*
* @param Collection $collection A Doctrine collection.
*
* @api
*/
public function __construct(Collection $collection)
{
$this->collection = $collection;
}
/**
* Returns the collection.
*
* @return Collection The collection.
*
* @api
*/
public function getCollection()
{
return $this->collection;
}
/**
* {@inheritdoc}
*/
public function getNbResults()
{
return $this->collection->count();
}
/**
* {@inheritdoc}
*/
public function getSlice($offset, $length)
{
return $this->collection->slice($offset, $length);
}
}