mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
22 lines
293 B
PHP
22 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Notice\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);
|
|
}
|
|
|
|
}
|