adamwathan/form

View on GitHub
src/AdamWathan/Form/Elements/Password.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AdamWathan\Form\Elements;

class Password extends Text
{
    protected $attributes = [
        'type' => 'password',
    ];
}