This commit is contained in:
jhx
2023-08-18 11:34:58 +08:00
commit 49ea1bb75d
16 changed files with 583 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
/**
*
* @author jhx
* @date 2021/10/20 11:25
*/
namespace Test\service;
class TestService
{
public function test($string)
{
return "hello {$string}";
}
}