fembooru/ext/post_titles/events/post_title_set_event.php
2019-09-29 14:30:55 +01:00

14 lines
223 B
PHP

<?php
class PostTitleSetEvent extends Event
{
public $image;
public $title;
public function __construct(Image $image, String $title)
{
$this->image = $image;
$this->title = $title;
}
}