This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/post_titles/events/post_title_set_event.php

14 lines
223 B
PHP
Raw Normal View History

<?php
class PostTitleSetEvent extends Event
{
public $image;
public $title;
public function __construct(Image $image, String $title)
{
$this->image = $image;
$this->title = $title;
}
2019-09-29 13:30:55 +00:00
}