File: /home/mmickelson/w2p.spidev.xyz/vendor/phpunit/phpunit/tests/_files/Calculator.php
<?php
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class Calculator
{
/**
* @assert (0, 0) == 0
* @assert (0, 1) == 1
* @assert (1, 0) == 1
* @assert (1, 1) == 2
*
* @param mixed $a
* @param mixed $b
*/
public function add($a, $b)
{
return $a + $b;
}
}