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

20 lines
287 B
PHP
Raw Normal View History

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