for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace RobinDirksen1\LaravelRequestLogger\Test;
use RobinDirksen1\LaravelRequestLogger\RequestLogger;
class RequestLoggerFunctionTest extends TestCase
{
/**
* Check that the multiply method returns correct result
* @return void
*/
public function testMultiplyReturnsCorrectValue()
$this->assertSame(RequestLogger::multiply(4, 4), 16);
RobinDirksen1\LaravelReq...questLogger::multiply()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$this->assertSame(RequestLogger::/** @scrutinizer ignore-call */ multiply(4, 4), 16);
$this->assertSame(RequestLogger::multiply(2, 9), 18);
}