for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace PeeHaa\AsyncTwitter\Request;
class Parameter
{
private $key;
private $value;
public function __construct(string $key, string $value)
$this->key = $key;
$this->value = $value;
}
public function getKey(): string
return $this->key;
public function getValue(): string
return $this->value;