This commit is contained in:
Your Name
2026-03-27 18:06:12 +08:00
parent 9160c36735
commit 099bc1dd22
645 changed files with 276473 additions and 957 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
namespace Overtrue\Pinyin;
/**
* 拼音声调风格枚举
*/
enum ToneStyle: string
{
/**
* 符号风格:zhōng
*/
case SYMBOL = 'symbol';
/**
* 数字风格:zhong1
*/
case NUMBER = 'number';
/**
* 无声调:zhong
*/
case NONE = 'none';
}