mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 04:53:26 +00:00
21 lines
367 B
PHP
21 lines
367 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\WorkerManager\Event;
|
|
|
|
use Symfony\Component\EventDispatcher\Event as SfEvent;
|
|
|
|
class ExportFtpEvent extends SfEvent
|
|
{
|
|
private $ftpExportId;
|
|
|
|
public function __construct($ftpExportId)
|
|
{
|
|
$this->ftpExportId = $ftpExportId;
|
|
}
|
|
|
|
public function getFtpExportId()
|
|
{
|
|
return $this->ftpExportId;
|
|
}
|
|
}
|