for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHPCoord.
*
* @author Doug Wright
*/
declare(strict_types=1);
namespace PHPCoord\UnitOfMeasure\Angle;
use const M_PI;
class CentesimalSecond extends Angle
{
private float $angle;
public function __construct(float $angle)
$this->angle = $angle;
}
public function asRadians(): Radian
return new Radian($this->angle * M_PI / 2000000);
public function getValue(): float
return $this->angle;
public function getUnitName(): string
return 'centesimal second';