for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Elmage\TextNg\Authentication;
class ApiKeyAuthentication
{
private $apiKey;
public function __construct(string $apiKey)
$this->apiKey = $apiKey;
}
public function getApiKey()
return $this->apiKey;
public function setApiKey($apiKey)