for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* NextFlow (http://github.com/nextflow)
*
* @link http://github.com/nextflow/nextflow-php for the canonical source repository
* @copyright Copyright (c) 2014-2016 NextFlow (http://github.com/nextflow)
* @license https://raw.github.com/nextflow/nextflow-php/master/LICENSE MIT
*/
namespace NextFlow\Math\Action;
* Multiplies the left value with the right value.
final class MultiplyAction extends AbstractAction
{
* The method that calculates the value.
* @param double|float|int $lft The left value.
* @param double|float|int $rgt The right value.
* @return double|float|int Returns the calculated value.
protected function calculateValue($lft, $rgt)
return $lft * $rgt;
}