for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nighten\ApiClient;
class DefaultAuthenticationProvider implements AuthenticationProviderInterface
{
private string $key;
public function __construct(string $key)
$this->key = $key;
}
public function getKey(): string
return $this->key;