for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\OAuth;
use League\OAuth2\Client\Provider\GenericProvider;
class SelfSignedProvider extends GenericProvider
{
/**
* @param array $options
* @return array
*/
protected function getAllowedClientOptions(array $options)
return [ 'timeout', 'proxy', 'verify' ];
}