AcceptAttribute.php 200 B

12345678910111213
  1. <?php
  2. namespace ePHPic\View\Attributes;
  3. use ePHPic\View\StringAttribute;
  4. class AcceptAttribute extends StringAttribute
  5. {
  6. protected function name(): string
  7. {
  8. return "accept";
  9. }
  10. }