admin-api/vendor/overtrue/socialite/src/Contracts/FactoryInterface.php

14 lines
257 B
PHP

<?php
namespace Overtrue\Socialite\Contracts;
interface FactoryInterface
{
/**
* @param string $driver
*
* @return \Overtrue\Socialite\Contracts\ProviderInterface
*/
public function create(string $driver): ProviderInterface;
}