18 lines
314 B
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;
|
|
}
|
|
}
|