for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace PeeHaa\AsyncTwitter\Credentials;
class AccessToken
{
private $token;
private $secret;
public function __construct(string $token, string $secret)
$this->token = $token;
$this->secret = $secret;
}
public function getToken(): string
return $this->token;
public function getSecret(): string
return $this->secret;