for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sujalpatel\Calculator;
class Calculator
{
public static function add($a, $b)
return $a + $b;
}
public static function sub($a, $b)
return $a - $b;
public static function multi($a, $b)
return $a * $b;