1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-09-17 21:29:29 +08:00

22 lines
280 B
PHP

<?php
namespace App\Services\Sms;
use App\Services\Smser;
class Test extends Smser
{
/**
* @param string $phone
* @return bool
*/
public function handle($phone)
{
$identity = new Verify();
return $identity->handle($phone);
}
}