for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aerophant\RamdaTest;
use function Aerophant\Ramda\min;
use PHPUnit\Framework\TestCase;
class MinTest extends TestCase
{
public function testMin()
$firstValue = 9;
$firstValue
$secondValue = 3;
$secondValue
$expect = 3;
$actual = min(9)(3);
$this->assertEquals($expect, $actual);
}