| Total Complexity | 4 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class RenderArgument |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $type; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $name; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var mixed |
||
| 19 | */ |
||
| 20 | private $value; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param mixed $value |
||
| 24 | */ |
||
| 25 | 28 | public function __construct( |
|
| 33 | 28 | } |
|
| 34 | |||
| 35 | 12 | public function getType(): string |
|
| 36 | { |
||
| 37 | 12 | return $this->type; |
|
| 38 | } |
||
| 39 | |||
| 40 | 27 | public function getName(): string |
|
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return mixed |
||
| 47 | */ |
||
| 48 | 18 | public function getValue() |
|
| 51 | } |
||
| 52 | } |
||
| 53 |