Skip to content
On this page

Calculator Class

Contains two functions to perform basic mathematical operaions.

Add function

Returns int value, sum of two numbers.

php
public function add($a, $b) {
return $a + $b;
}

Subtract function

Returns int value, difference of two numbers.

php
public function subtract($a, $b) {
return $a - $b;
}