for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Twitter\API\REST\OAuth;
class AuthenticationToken
{
/** @var string */
private $token;
private $secret;
/**
* AuthenticationToken constructor.
*
* @param string $token
* @param string $secret
*/
public function __construct($token, $secret)
$this->token = $token;
$this->secret = $secret;
}
* @return string
public function getToken()
return $this->token;
public function getSecret()
return $this->secret;