for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Eljam\GuzzleJwt\Strategy\Auth;
/**
* @author Guillaume Cavana <[email protected]>
*/
class HttpBasicAuthStrategy extends AbstractBaseAuthStrategy
{
* {@inheritdoc}
public function getRequestOptions()
return [
\GuzzleHttp\RequestOptions::AUTH => [
$this->options['username'],
$this->options['password'],
],
];
}