Completed
Push — master ( 6d1e94...2cd5f8 )
by Kirill
02:09
created
src/Chrl/AppBundle/GameAction/NextAction.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,15 +6,15 @@
 block discarded – undo
6 6
 {
7 7
     public function run($message, $user)
8 8
     {
9
-		$game = $this->gameService->findGame($game);
9
+        $game = $this->gameService->findGame($game);
10 10
 
11
-		$this->botApi->sendMessage(
12
-			$game->chatId,
13
-			'Ok, changing question.',
14
-			'markdown'
15
-		);
16
-		$this->gameService->em->persist($game);
17
-		$this->gameService->em->flush();
18
-		$this->gameService->askQuestion($game);
11
+        $this->botApi->sendMessage(
12
+            $game->chatId,
13
+            'Ok, changing question.',
14
+            'markdown'
15
+        );
16
+        $this->gameService->em->persist($game);
17
+        $this->gameService->em->flush();
18
+        $this->gameService->askQuestion($game);
19 19
     }
20 20
 }
Please login to merge, or discard this patch.