for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Guillermoandrae\DynamoDb;
trait LimitAwareRequestTrait
{
/**
* @var int The result limit.
*/
protected $limit;
* Registers the result limit with this object.
*
* @param integer $limit The result limit.
* @return mixed An implementation of this trait.
final public function setLimit(int $limit)
$this->limit = $limit;
return $this;
}