| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct() |
||
| 17 | { |
||
| 18 | parent::__construct(); |
||
| 19 | |||
| 20 | $username = 'Robot_' . $this->generateRandomLetters(); |
||
| 21 | $this->setUsername($username); |
||
| 22 | $this->setEmail($username . '@' . $this->generateRandomLetters() . '.bot'); |
||
| 23 | $this->setPlainPassword($this->generateRandomLetters()); |
||
| 24 | } |
||
| 25 | |||
| 44 |