fembooru/ext/post_titles/events/post_title_set_event.php
2019-08-01 08:10:30 -05:00

13 lines
222 B
PHP

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