AcceptCharsetAttribute.php 215 B

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