You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* You can multiply a unit by calling `multiply` method with a float as an argument
* add always returns a new instance
*/
$quantity = 7;
$unitWeight = new Mass\Gram(500);
$totalWeight = $unitWeight->multiply($quantity);
echo $totalWeight->format(0);
// 3500 g
The text was updated successfully, but these errors were encountered:
E.g.
The text was updated successfully, but these errors were encountered: