This commit is contained in:
2024-12-16 15:44:56 +08:00
parent 5bda66b40d
commit 011e95a3f2
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Kiri\Router\Annotate;
#[\Attribute]
class ContentType
{
/**
* @param string $contentType
*/
public function __construct(public string $contentType = "text/html")
{
}
}