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

18 lines
314 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class PostTitleSetEvent extends Event
{
public Image $image;
public string $title;
public function __construct(Image $image, string $title)
{
parent::__construct();
$this->image = $image;
$this->title = $title;
}
}