Replaced group attribute with name attribute in Signal TDF element
This commit is contained in:
@@ -3,23 +3,23 @@ namespace Targets\TargetDescriptionFiles;
|
||||
|
||||
class Signal
|
||||
{
|
||||
public ?string $name = null;
|
||||
public ?string $padKey = null;
|
||||
public ?int $index = null;
|
||||
public ?string $function = null;
|
||||
public ?string $group = null;
|
||||
public ?string $field = null;
|
||||
|
||||
public function __construct(
|
||||
?string $name,
|
||||
?string $padKey,
|
||||
?int $index,
|
||||
?string $function,
|
||||
?string $group,
|
||||
?string $field
|
||||
) {
|
||||
$this->name = $name;
|
||||
$this->padKey = $padKey;
|
||||
$this->index = $index;
|
||||
$this->function = $function;
|
||||
$this->group = $group;
|
||||
$this->field = $field;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user