for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: sergio.rodenas
* Date: 2019-01-30
* Time: 08:13
*/
namespace Rodenastyle\TestDoc\Middleware;
use Closure;
class IncludeInSpecification
{
public function handle($request, Closure $next)
return $next($request);
}
public function terminate($request, $response)
dd([$request, $response]);
dd
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
/** @scrutinizer ignore-call */