PHPToolKit/src/Configuration/Settings.php
Daniel Siepmann 691adc00a6
Follow and validate against PSR-12
This prevents unnecessary merge conflicts in future.
Also code follows a simple formatting rule set and is easier to read.
2020-10-05 08:49:33 +02:00

76 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
namespace SkillDisplay\PHPToolKit\Configuration;
class Settings
{
/**
* @var string
*/
private $user_secret = '';
/**
* @var string
*/
private $apiKey = '';
/**
* @var int
*/
private $verifierID = 0;
/**
* @var string
*/
private $APIUrl = '';
/**
* @var string
*/
private $mySkillDisplayUrl = '';
public function getVerifierID(): int
{
return $this->verifierID;
}
public function getUserSecret(): string
{
return $this->user_secret;
}
public function getApiKey(): string
{
return $this->apiKey;
}
public function getAPIUrl(): string
{
return $this->APIUrl;
}
public function getMySkillDisplayUrl(): string
{
return $this->mySkillDisplayUrl;
}
/**
* Settings constructor.
*
* @param string $apiKey API Key to allow the application to use the endpoint
* @param int $verifierID ID of the Verifier entry, necessary for Educational-Verification, Business-Verification or Certification
* @param string $user_secret Secret Key of the Verifier - necessary for Educational-Verification, Business-Verification or Certification
* @param string|null $domain URL of the SkillDisplay instance - usually this will be the public one on skilldisplay.eu
*/
public function __construct(string $apiKey, int $verifierID = 0, string $user_secret = '', string $domain = null)
{
$this->apiKey = $apiKey;
$this->verifierID = $verifierID;
$this->user_secret = $user_secret;
$this->APIUrl = (is_null($domain)) ? 'https://www.skilldisplay.eu' : 'https://' . $domain;
$this->mySkillDisplayUrl = (is_null($domain)) ? 'https://my.skilldisplay.eu' : 'https://my.' . $domain;
}
}