Christopher Vagnetoft
8cc1eac7a4
* Implemented ScriptRunner with environment expansion and cleaner code. * Added ApiClient plugin (com.noccy.apiclient) * Renamed CHANGELOG.md to VERSIONS.md * Shuffled buildtools * Added first unittests
14 lines
244 B
PHP
14 lines
244 B
PHP
<?php // "name":"Call on web APIs", "author":"Noccy"
|
|
|
|
namespace SparkPlug\Com\Noccy\ApiClient\Api;
|
|
|
|
class Profile
|
|
{
|
|
private array $properties = [];
|
|
|
|
public function getProperties(): array
|
|
{
|
|
return $this->properties;
|
|
}
|
|
}
|