Files
2023-08-18 11:34:58 +08:00

17 lines
186 B
PHP

<?php
/**
*
* @author jhx
* @date 2021/10/20 11:25
*/
namespace Test\service;
class TestService
{
public function test($string)
{
return "hello {$string}";
}
}