12 lines
180 B
PHP
12 lines
180 B
PHP
<?php
|
|
|
|
class ImageInfoSetEvent extends Event
|
|
{
|
|
/** @var Image */
|
|
public $image;
|
|
|
|
public function __construct(Image $image)
|
|
{
|
|
$this->image = $image;
|
|
}
|
|
}
|