14 lines
292 B
PHP
14 lines
292 B
PHP
<?php declare(strict_types=1);
|
|
|
|
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;
|
|
}
|
|
}
|