for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Phact\Container\Details;
class Property implements PropertyInterface
{
/**
* @var string
*/
private $name;
* @var mixed
private $value;
public function __construct(string $name, $value)
$this->name = $name;
$this->value = $value;
}
* @return string
public function getName(): string
return $this->name;
* @return mixed
public function getValue()
return $this->value;