31 lines
659 B
PHP
31 lines
659 B
PHP
<?php
|
|
|
|
namespace App\Support\Units;
|
|
|
|
use App\Contracts\Unit;
|
|
use PhpUnitsOfMeasure\PhysicalQuantity\Temperature as TemperatureUnit;
|
|
|
|
/**
|
|
* Composition for the converter
|
|
*/
|
|
class Temperature extends Unit
|
|
{
|
|
public $responseUnits = [
|
|
'C',
|
|
'F',
|
|
];
|
|
|
|
/**
|
|
* @param float $value
|
|
* @param string $unit
|
|
*
|
|
* @throws \PhpUnitsOfMeasure\Exception\NonNumericValue
|
|
* @throws \PhpUnitsOfMeasure\Exception\NonStringUnitName
|
|
*/
|
|
public function __construct(float $value, string $unit)
|
|
{
|
|
$this->unit = setting('units.temperature');
|
|
$this->instance = new TemperatureUnit($value, $unit);
|
|
}
|
|
}
|