for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Boris Guéry <[email protected]>
*/
namespace Bgy\OAuth2;
class TokenRequestAttempt
{
private $inputData;
public function __construct(InputDataBag $inputData)
$this->inputData = $inputData;
}
public function getGrantType()
return $this->inputData->getGrantType();
public function getInputData()
return $this->inputData;