for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Adlogix package.
*
* (c) Allan Segebarth <[email protected]>
* (c) Jean-Jacques Courtens <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Adlogix\ConfluenceClient\Entity\Collection;
/**
* Class Collection
* @package Adlogix\ConfluenceClient\Entity\Collection
* @author Cedric Michaux <[email protected]>
class Collection implements CollectionInterface
{
* @var int
private $start;
private $limit;
private $size;
* {@inheritdoc}
public function getStart()
return $this->start;
}
* @param int $start
* @return Collection
public function setStart($start)
$this->start = $start;
return $this;
public function getLimit()
return $this->limit;
* @param int $limit
public function setLimit($limit)
$this->limit = $limit;
public function getSize()
return $this->size;
* @param int $size
public function setSize($size)
$this->size = $size;