2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-07-13 17:12:03 -05:00
|
|
|
|
|
|
|
class ImageInfoSetEvent extends Event
|
|
|
|
{
|
|
|
|
/** @var Image */
|
|
|
|
public $image;
|
|
|
|
|
|
|
|
public function __construct(Image $image)
|
|
|
|
{
|
2020-01-26 13:19:35 +00:00
|
|
|
parent::__construct();
|
2019-07-13 17:12:03 -05:00
|
|
|
$this->image = $image;
|
|
|
|
}
|
2019-09-29 14:30:55 +01:00
|
|
|
}
|