for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Phact\Container\Builder;
class Parameter implements ParameterInterface
{
/**
* @var int
*/
private $type;
private $value;
public function __construct(int $type, $value)
$this->type = $type;
$this->value = $value;
}
* {@inheritDoc}
public function getType(): int
return $this->type;
public function getValue()
return $this->value;