17 lines
221 B
PHP
17 lines
221 B
PHP
<?php
|
|
|
|
namespace Scientific;
|
|
|
|
class Resistance extends Quantity
|
|
{
|
|
protected function getSymbol(): string
|
|
{
|
|
return 'Ω';
|
|
}
|
|
|
|
protected function getName(): string
|
|
{
|
|
return 'ohm';
|
|
}
|
|
}
|