for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\HttpLogger\Middlewares;
use Closure;
use Illuminate\Http\Request;
use Spatie\HttpLogger\LogProfile;
use Spatie\HttpLogger\LogWriter;
class HttpLogger
{
protected $logProfile;
protected $logWriter;
public function __construct(LogProfile $logProfile, LogWriter $logWriter)
$this->logProfile = $logProfile;
$this->logWriter = $logWriter;
}
public function handle(Request $request, Closure $next)
if ($this->logProfile->shouldLogRequest($request)) {
$this->logWriter->logRequest($request);
return $next($request);