Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 1 | public function handle(Command $command) |
|
18 | { |
||
19 | 1 | $post = new Post(); |
|
20 | 1 | $post->setTitle($command->getTitle()); |
|
21 | 1 | $post->setContent($command->getContent()); |
|
22 | 1 | $post->setStatus($command->getStatus()); |
|
23 | 1 | $post->setUser($command->getUser()); |
|
24 | |||
25 | 1 | $this->postRepository->save($post); |
|
26 | } |
||
28 |