Initial commit

This commit is contained in:
2021-04-29 21:58:02 +02:00
commit 58ee87a861
17 changed files with 729 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace Scientific;
class Resistance extends Quantity
{
protected function getSymbol(): string
{
return 'Ω';
}
protected function getName(): string
{
return 'ohm';
}
}