feat(PhpLangDoc): support PHP | 支持 PHP

This commit is contained in:
林万程
2024-02-08 10:07:41 +08:00
parent 10074b3ac7
commit 62c52fa93d
12 changed files with 155 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
<?php
/*
* file tree doc at first
*/
fun();
/**
* fun
* {@link fun}
* @author author
*/
function fun() {
return 'Hello';
}