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