for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpJsonRpc\Server\Stub\ValueObject;
class Age
{
/**
* @var int
*/
private $value;
* @param int $value
public function __construct($value)
$this->value = $value;
}
* @return int
public function toNative()
return $this->value;