| 1 | <?php |
||
| 20 | class PostWasCreated extends Event |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $title; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $content; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * PostWasCreated constructor. |
||
| 34 | * |
||
| 35 | * @param string $title |
||
| 36 | * @param string $content |
||
| 37 | */ |
||
| 38 | public function __construct($title, $content) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function title() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public function content() |
||
| 59 | } |
||
| 60 |