for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP Units of Measure Library
*
* @link https://github.com/hiqdev/php-units
* @package php-units
* @license BSD-3-Clause
* @copyright Copyright (c) 2017, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\php\units;
* Quantity with Unit.
* @author Andrii Vasyliev <[email protected]>
final class Quantity extends AbstractQuantity
{
protected static function findUnit($unit)
return Unit::$unit();
}