public function handle($command)
 {
     $article = Article::compose($command->author, $command->title, $command->content, $command->status, $command->laravelVersion, $command->tagIds);
     $this->articleRepository->save($article);
     return new ComposeArticleResponse($article);
 }