2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-07-13 17:12:03 -05:00
|
|
|
|
|
|
|
class PostTitleSetEvent extends Event
|
|
|
|
{
|
|
|
|
public $image;
|
|
|
|
public $title;
|
|
|
|
|
|
|
|
public function __construct(Image $image, String $title)
|
|
|
|
{
|
2020-01-26 13:19:35 +00:00
|
|
|
parent::__construct();
|
2019-07-13 17:12:03 -05:00
|
|
|
$this->image = $image;
|
|
|
|
$this->title = $title;
|
|
|
|
}
|
2019-09-29 14:30:55 +01:00
|
|
|
}
|