for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Incapsula\Credentials;
class Credentials
{
/**
* @var string
*/
private $apiId;
private $apiKey;
public function __construct(string $apiId, string $apiKey)
$this->apiId = $apiId;
$this->apiKey = $apiKey;
}
public function getApiId(): string
return $this->apiId;
public function getApiKey(): string
return $this->apiKey;