Update git submodules, run phpcbf

This commit is contained in:
2022-03-15 10:30:09 +01:00
parent 0ba9a3b1ec
commit 8661848f0c
8 changed files with 39 additions and 35 deletions

View File

@ -9,8 +9,8 @@ declare(strict_types = 1);
/**
* Class holding the information for a field entry.
*/
final class FieldEntry
{
final class FieldEntry {
public bool $required;
public array $allowedValues;
public array $dependsOn;
@ -21,12 +21,12 @@ final class FieldEntry
/**
* Function for constructing a new FieldEntry Object.
*
* @param bool $required True if the field is required.
* @param array $allowedValues Array of allowed values.
* @param array $dependsOn Array of fields the entry depends on.
* @param string $remark String variable.
* @param string $name_human_readable Human readable translation.
* @param string $explica String variable
* @param boolean $required True if the field is required.
* @param array $allowedValues Array of allowed values.
* @param array $dependsOn Array of fields the entry depends on.
* @param string $remark String variable.
* @param string $name_human_readable Human readable translation.
* @param string $explica String variable
*/
public function __construct(
bool $required, array $allowedValues,
@ -41,5 +41,4 @@ final class FieldEntry
$this->explica = $explica;
}
}