Fix tests for account

This commit is contained in:
James Cole
2021-03-20 07:02:06 +01:00
parent e32f14578c
commit 836f0ecf3f
23 changed files with 399 additions and 275 deletions

View File

@@ -10,13 +10,15 @@ class FieldSet
{
public ?array $fields;
public string $title;
public ?array $parameters;
/**
* FieldSet constructor.
*/
public function __construct()
{
$this->fields = [];
$this->fields = [];
$this->parameters = [];
}
/**