| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | final class ParameterRegistration extends ARegistration { |
||
| 32 | |||
| 33 | /** @var string */ |
||
| 34 | private $name; |
||
| 35 | |||
| 36 | /** @var mixed */ |
||
| 37 | private $value; |
||
| 38 | |||
| 39 | public function __construct(string $appId, |
||
| 40 | string $name, |
||
| 41 | $value) { |
||
| 42 | parent::__construct($appId); |
||
| 43 | $this->name = $name; |
||
| 44 | $this->value = $value; |
||
| 45 | } |
||
| 46 | |||
| 47 | public function getName(): string { |
||
| 48 | return $this->name; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return mixed |
||
| 53 | */ |
||
| 54 | public function getValue() { |
||
| 56 | } |
||
| 57 | } |
||
| 58 |