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