SmsInterface.php 157 B

12345678910111213
  1. <?php
  2. namespace App\Repositories\Contracts;
  3. /**
  4. *
  5. * @author lilin
  6. *
  7. */
  8. interface SmsInterface
  9. {
  10. function getClient();
  11. function send();
  12. }