@@ -62,8 +62,8 @@ |
||
| 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(), |
@@ -17,9 +17,9 @@ |
||
| 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 | |