for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
class VoidCounter
{
/**
* @var int
*/
public $counter = 0;
public function increment(int $amount) : void
$this->counter += $amount;
}