Files
kiri-router/src/Annotate/ContentType.php
T

17 lines
196 B
PHP
Raw Normal View History

2024-12-16 15:44:56 +08:00
<?php
namespace Kiri\Router\Annotate;
#[\Attribute]
class ContentType
{
/**
* @param string $contentType
*/
public function __construct(public string $contentType = "text/html")
{
}
}