1 | <?php |
||
20 | class PostTitleWasChanged extends Event |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $title; |
||
26 | |||
27 | /** |
||
28 | * PostTitleWasChanged constructor. |
||
29 | * |
||
30 | * @param string $title |
||
31 | */ |
||
32 | public function __construct($title) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function title() |
||
44 | } |
||
45 |