<?php

namespace App\Message;

use App\Entity\Campaign\Report;

class ReportPublishedMessage
{
    /**
     * @var Report
     */
    private $report;

    public function __construct(Report $report)
    {
        $this->report = $report;
    }

    /**
     * @return Report
     */
    public function getReport(): Report
    {
        return $this->report;
    }
}
