adamwathan/form

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AdamWathan\Form\Elements;

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