for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Funivan\CabbageCore\Int\IntObject;
class PredefinedInt implements IntInterface
{
/**
* @var int
*/
private $value;
* @param int $value
public function __construct(int $value)
$this->value = $value;
}
public function value(): int
return $this->value;