for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Oauth\Grant;
use League\OAuth2\Client\Grant\AbstractGrant;
class FbExchangeToken extends AbstractGrant
{
public function __toString()
return 'fb_exchange_token';
}
protected function getRequiredRequestParameters()
return [
'fb_exchange_token',
];
protected function getName()