php-crossover-calculator/src/Scientific/Inductance.php

17 lines
221 B
PHP

<?php
namespace Scientific;
class Inductance extends Quantity
{
protected function getSymbol(): string
{
return 'H';
}
protected function getName(): string
{
return 'henry';
}
}