Completed
Push — master ( ec4e35...9cc8cf )
by samizdam
02:53
created
src/Rottenwood/KingdomBundle/Command/Console/CreateRobotCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
         $output->writeln('робот создан!');
63 63
 
64 64
         $output->writeln('====================================');
65
-        $output->writeln('Id: ' . $robot->getId());
66
-        $output->writeln('Имя: ' . $robot->getName());
65
+        $output->writeln('Id: '.$robot->getId());
66
+        $output->writeln('Имя: '.$robot->getName());
67 67
         $output->writeln(
68 68
             sprintf('Комната: [%d]%s %d/%d (%d)',
69 69
                 $room->getId(),
Please login to merge, or discard this patch.
src/Rottenwood/KingdomBundle/Entity/Robot.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
     {
18 18
         parent::__construct();
19 19
 
20
-        $username = 'Robot_' . $this->generateRandomLetters();
20
+        $username = 'Robot_'.$this->generateRandomLetters();
21 21
         $this->setUsername($username);
22
-        $this->setEmail($username . '@' . $this->generateRandomLetters() . '.bot');
22
+        $this->setEmail($username.'@'.$this->generateRandomLetters().'.bot');
23 23
         $this->setPlainPassword($this->generateRandomLetters());
24 24
     }
25 25
 
Please login to merge, or discard this patch.