File "AddJobInformation.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition/src/Middleware/AddJobInformation.php
File size: 565 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Facade\Ignition\Middleware;

use Facade\FlareClient\Report;
use Facade\Ignition\JobRecorder\JobRecorder;

class AddJobInformation
{
    /** @var \Facade\Ignition\JobRecorder\JobRecorder */
    protected $jobRecorder;

    public function __construct(JobRecorder $jobRecorder)
    {
        $this->jobRecorder = $jobRecorder;
    }

    public function handle(Report $report, $next)
    {
        if ($this->jobRecorder->getJob()) {
            $report->group('job', $this->jobRecorder->toArray());
        }

        return $next($report);
    }
}