Refactored TDF processing PHP code to confirm to new TDF format
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
namespace Targets\TargetDescriptionFiles;
|
||||
|
||||
class PhysicalInterface
|
||||
{
|
||||
public ?string $name = null;
|
||||
public ?string $type = null;
|
||||
|
||||
public function __construct(?string $name, ?string $type)
|
||||
{
|
||||
$this->name = $name;
|
||||
$this->type = $type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user