| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | abstract class Input extends Html { |
||
| 12 | |||
| 13 | /** @var string */ |
||
| 14 | protected $type; |
||
| 15 | |||
| 16 | /** @var string */ |
||
| 17 | protected $value; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $type |
||
| 21 | * @param string $name |
||
| 22 | * @param mixed $value |
||
| 23 | * @param string[] $attributes |
||
| 24 | */ |
||
| 25 | public function __construct($type, $name, $value, $attributes) { |
||
| 29 | } |
||
| 30 | |||
| 31 | /** @return string */ |
||
| 32 | public function getValue() { |
||
| 38 |