| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 28 | { |
||
| 29 | for ($i = 0; $i < 20; $i++) { |
||
| 30 | $this->getContainer()->get('bengor_user.user.command_bus')->handle( |
||
| 31 | new SignUpUserCommand( |
||
| 32 | 'user'.$i.'@gmail.com', |
||
| 33 | '123456', |
||
| 34 | ['ROLE_USER'] |
||
| 35 | ) |
||
| 36 | ); |
||
| 37 | } |
||
| 38 | |||
| 39 | $output->writeln('Population is successfully done'); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |