| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 19 | public function load(ObjectManager $manager) |
||
| 20 | { |
||
| 21 | $user = new User(); |
||
| 22 | $user->username = 'tester_fixture'; |
||
| 23 | $user->email = '[email protected]'; |
||
| 24 | $user->setPassword('123456', $this->encoder); |
||
| 25 | $manager->persist($user); |
||
| 26 | $manager->flush(); |
||
| 27 | } |
||
| 28 | } |