1 | <?php |
||
23 | class PostService |
||
24 | { |
||
25 | /** |
||
26 | * @var EventBus |
||
27 | */ |
||
28 | protected $eventBus; |
||
29 | |||
30 | /** |
||
31 | * PostService constructor. |
||
32 | * |
||
33 | * @param EventBus $eventBus |
||
34 | */ |
||
35 | public function __construct(EventBus $eventBus) |
||
39 | |||
40 | /** |
||
41 | * @param CreatePostCommand $command |
||
42 | */ |
||
43 | public function createPost(CreatePostCommand $command) |
||
47 | |||
48 | /** |
||
49 | * @param ChangePostTitleCommand $command |
||
50 | */ |
||
51 | public function changePostTitle(ChangePostTitleCommand $command) |
||
55 | } |
||
56 |