first commit

This commit is contained in:
2023-04-15 23:29:27 +08:00
commit 2d9ac93a7a
71 changed files with 4592 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Kiri\Router;
/**
*
*/
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
class Aspect
{
/**
* @param array|string $actions
*/
public function __construct(readonly public array|string $actions)
{
}
}