for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace ekinhbayar\GitAmp\Presentation;
class Type
{
private int $type;
public function __construct(int $type)
$this->type = $type;
}
public function getValue(): int
return $this->type;