mautic / app /bundles /ReportBundle /Event /PermanentReportFileCreatedEvent.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\ReportBundle\Event;
use Mautic\ReportBundle\Entity\Report;
class PermanentReportFileCreatedEvent extends AbstractReportEvent
{
public function __construct(Report $report)
{
$this->report = $report;
}
}