| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CentesimalSecond extends Angle |
||
| 14 | { |
||
| 15 | private float $angle; |
||
| 16 | |||
| 17 | public function __construct(float $angle) |
||
| 18 | { |
||
| 19 | $this->angle = $angle; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function asRadians(): Radian |
||
| 23 | { |
||
| 24 | return new Radian($this->angle * M_PI / 2000000); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getValue(): float |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getUnitName(): string |
||
| 35 | } |
||
| 36 | } |
||
| 37 |