ThirdUpInterface.php 353 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Repositories\Contracts;
  3. /**
  4. *
  5. * @author lilin
  6. *
  7. */
  8. interface ThirdUpInterface
  9. {
  10. const TYPENAME = '统一用户名密码登陆';
  11. /**
  12. * 用户名,密码登陆
  13. *
  14. * @param string $username
  15. * @param string $password
  16. */
  17. public function login(string $username, string $password);
  18. }