| 1 | <?php |
||
| 15 | final class DivideAction extends AbstractAction |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * The method that calculates the value. |
||
| 19 | * |
||
| 20 | * @param double|float|int $lft The left value. |
||
| 21 | * @param double|float|int $rgt The right value. |
||
| 22 | * @return double|float|int Returns the calculated value. |
||
| 23 | */ |
||
| 24 | protected function calculateValue($lft, $rgt) |
||
| 28 | } |
||
| 29 |