Files
kiri-router/src/Aspect.php
T

21 lines
247 B
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?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)
{
}
}