2020-06-02 18:05:09 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
class BulkExportEvent extends Event
|
|
|
|
{
|
2021-03-14 23:43:50 +00:00
|
|
|
public Image $image;
|
|
|
|
public array $fields = [];
|
2020-06-02 18:05:09 -05:00
|
|
|
|
|
|
|
public function __construct(Image $image)
|
|
|
|
{
|
2020-10-29 01:28:46 +00:00
|
|
|
parent::__construct();
|
2020-06-02 18:05:09 -05:00
|
|
|
$this->image = $image;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class BulkImportEvent extends Event
|
|
|
|
{
|
2021-03-14 23:43:50 +00:00
|
|
|
public Image $image;
|
|
|
|
public array $fields = [];
|
2020-06-02 18:05:09 -05:00
|
|
|
|
|
|
|
public function __construct(Image $image, $fields)
|
|
|
|
{
|
2020-10-29 01:28:46 +00:00
|
|
|
parent::__construct();
|
2020-06-02 18:05:09 -05:00
|
|
|
$this->image = $image;
|
|
|
|
$this->fields = $fields;
|
|
|
|
}
|
|
|
|
}
|