for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rennokki\DynamoDb\Parsers;
class Placeholder
{
/**
* @var int
*/
private $counter;
public function __construct()
$this->reset();
}
public function next()
$this->counter += 1;
return "a{$this->counter}";
public function reset()
$this->counter = 0;
return $this;