Files
kiri-router/src/Aspect.php
T
2023-04-16 01:24:30 +08:00

22 lines
272 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Router;
/**
*
*/
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
class Aspect
{
/**
* @param array|string $actions
*/
public function __construct(readonly public array|string $actions)
{
}
}