| 1 | <?php |
||
| 22 | class BlogService |
||
| 23 | { |
||
| 24 | protected $eventBus; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * BlogService constructor. |
||
| 28 | * |
||
| 29 | * @param EventBus $eventBus |
||
| 30 | */ |
||
| 31 | public function __construct(EventBus $eventBus) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param CreateBlogCommand $command |
||
| 38 | */ |
||
| 39 | public function createBlog(CreateBlogCommand $command) |
||
| 43 | } |
||
| 44 |