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