fembooru/ext/view/events/image_info_set_event.php
2020-01-26 16:27:56 +00:00

14 lines
236 B
PHP

<?php declare(strict_types=1);
class ImageInfoSetEvent extends Event
{
/** @var Image */
public $image;
public function __construct(Image $image)
{
parent::__construct();
$this->image = $image;
}
}