17 lines
222 B
PHP
17 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
namespace Scientific;
|
||
|
|
||
|
class Capacitance extends Quantity
|
||
|
{
|
||
|
protected function getSymbol(): string
|
||
|
{
|
||
|
return 'F';
|
||
|
}
|
||
|
|
||
|
protected function getName(): string
|
||
|
{
|
||
|
return 'farad';
|
||
|
}
|
||
|
}
|