FactoryInterface.php 480 B

12345678910111213141516171819
  1. <?php
  2. namespace Overtrue\Socialite\Contracts;
  3. const ABNF_APP_ID = 'app_id';
  4. const ABNF_APP_SECRET = 'app_secret';
  5. const ABNF_OPEN_ID = 'open_id';
  6. const ABNF_TOKEN = 'token';
  7. interface FactoryInterface
  8. {
  9. public function config(\Overtrue\Socialite\Config $config): self;
  10. public function create(string $name): ProviderInterface;
  11. public function getResolvedProviders(): array;
  12. public function buildProvider(string $provider, array $config): ProviderInterface;
  13. }