PHPToolKit/src/Example/Includes/ExampleSettings.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

15 lines
403 B
PHP

<?php
declare(strict_types=1);
use SkillDisplay\PHPToolKit\Configuration\Settings;
// In order to make the examples in the folders "APIKeyRequied" and "FullSettingsRequired" work, insert your settings here
// Check the ReadMe.md in order to find out how to obtain an APIKey and or Verifier Credentials
$mySettings = new Settings(
'---YOUR-API-KEY---',
0,
'',
'www.skilldisplay.eu'
);