Refactored physical interfaces in TDFs and TDF scripts

This commit is contained in:
Nav
2024-07-06 01:33:19 +01:00
parent 8aad5b9095
commit 4bb309a179
269 changed files with 632 additions and 630 deletions

View File

@@ -3,12 +3,10 @@ namespace Targets\TargetDescriptionFiles;
class PhysicalInterface
{
public ?string $name = null;
public ?string $type = null;
public ?string $value = null;
public function __construct(?string $name, ?string $type)
public function __construct(?string $value)
{
$this->name = $name;
$this->type = $type;
$this->value = $value;
}
}