<?php/* * This file is part of the overtrue/easy-sms. * * (c) overtrue <i@overtrue.me> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */namespaceOvertrue\EasySms\Contracts;useOvertrue\EasySms\Support\Config;/** * Class GatewayInterface. */interfaceGatewayInterface{/** * Get gateway name. * * @return string */publicfunctiongetName();/** * Send a short message. * * @param \Overtrue\EasySms\Contracts\PhoneNumberInterface $to * @param \Overtrue\EasySms\Contracts\MessageInterface $message * @param \Overtrue\EasySms\Support\Config $config * * @return array */publicfunctionsend(PhoneNumberInterface$to,MessageInterface$message,Config$config);}