- Added new `pad` element to TDFs - Refactored `pin` and `signal` elements to accommodate new `pad` element - Improved validation of signal-to-pad relation in TDF validation script - Added key attribute to `variant` element - Removed `package` attribute from `variant` element
15 lines
286 B
PHP
15 lines
286 B
PHP
<?php
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
class Pin
|
|
{
|
|
public ?string $position = null;
|
|
public ?string $padKey = null;
|
|
|
|
public function __construct(?string $position, ?string $padKey)
|
|
{
|
|
$this->position = $position;
|
|
$this->padKey = $padKey;
|
|
}
|
|
}
|