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