File "AnonymizeIp.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/flare-client-php/src/Middleware/AnonymizeIp.php
File size: 331 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\FlareClient\Middleware;

use Facade\FlareClient\Report;

class AnonymizeIp
{
    public function handle(Report $report, $next)
    {
        $context = $report->allContext();

        $context['request']['ip'] = null;

        $report->userProvidedContext($context);

        return $next($report);
    }
}