| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function __construct($label, $attributes=[]) |
||
| 15 | { |
||
| 16 | parent::__construct($label, $attributes); |
||
| 17 | $this->Attributes()->set('type','password'); |
||
| 18 | $this->Attributes()->set('minlength','6'); |
||
| 19 | $this->Attributes()->set('maxlength','64'); |
||
| 20 | $this->Attributes()->set('required','required'); |
||
| 21 | $this->Attributes()->set('placeholder','**********'); |
||
| 22 | } |
||
| 24 | } |