. */ declare(strict_types=1); namespace SP\Domain\Common\Attributes; use Attribute; /** * Class Authorize */ #[Attribute(Attribute::TARGET_METHOD)] final readonly class Authorize { public function __construct(public int $actionId) { } }