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

17 lines
221 B
PHP
Raw Normal View History

2021-04-29 21:58:02 +02:00
<?php
namespace Scientific;
class Frequency extends Quantity
{
protected function getSymbol(): string
{
return 'Hz';
}
protected function getName(): string
{
return 'hertz';
}
}