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 Application
{
private $key;
private $secret;
public function __construct(string $key, string $secret)
$this->key = $key;
$this->secret = $secret;
}
public function getKey(): string
return $this->key;
public function getSecret(): string
return $this->secret;