driver = new $class($config); if (!($this->driver instanceof SmsDriverInterface)) { throw new \Exception("[$class] 必须实现 SmsDriverInterface 接口"); } } public function send(string $mobile, string $templateId, array $data = []): array { return $this->driver->send($mobile, $templateId, $data); } }