Files
kiri-router/src/Annotate/ContentType.php
T
2024-12-16 15:47:00 +08:00

17 lines
227 B
PHP

<?php
namespace Kiri\Router\Annotate;
#[\Attribute(((\Attribute::TARGET_METHOD)))]
class ContentType
{
/**
* @param string $contentType
*/
public function __construct(public string $contentType = "text/html")
{
}
}