php-crossover-calculator/src/Components/Inductor.php

20 lines
280 B
PHP
Raw Normal View History

2021-04-29 21:58:02 +02:00
<?php
namespace Components;
use Scientific\Inductance;
class Inductor
{
public function __construct(
private float $inductance
)
{
}
public function getInductance(): Inductance
{
return Inductance::fromValue($this->inductance);
}
}