2020-06-02 18:05:09 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
class BulkExportEvent extends Event
|
|
|
|
{
|
|
|
|
public $image;
|
|
|
|
public $fields = [];
|
|
|
|
|
|
|
|
public function __construct(Image $image)
|
|
|
|
{
|
|
|
|
$this->image = $image;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class BulkImportEvent extends Event
|
|
|
|
{
|
|
|
|
public $image;
|
2020-06-12 13:39:57 -05:00
|
|
|
public $fields = [];
|
2020-06-02 18:05:09 -05:00
|
|
|
|
|
|
|
public function __construct(Image $image, $fields)
|
|
|
|
{
|
|
|
|
$this->image = $image;
|
|
|
|
$this->fields = $fields;
|
|
|
|
}
|
|
|
|
}
|