for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* User: alec
* Date: 30.11.18
* Time: 17:42
*/
namespace AlecRabbit\Tools\Traits;
use AlecRabbit\Traits\GettableName;
trait CounterFields
{
use GettableName;
/** @var int */
protected $value;
protected $step;
* @return int
public function getStep(): int
return $this->step;
}
public function getValue(): int
return $this->value;