| Conditions | 2 |
| Paths | 2 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 26 | public function load(ObjectManager $manager) |
||
| 27 | { |
||
| 28 | $howManyApps = 15; |
||
| 29 | $createdCount = 0; |
||
| 30 | |||
| 31 | while ($createdCount < $howManyApps) { |
||
| 32 | $app = new App; |
||
| 33 | $app->setId('app'.$createdCount); |
||
| 34 | $app->setName('App'.$createdCount); |
||
| 35 | $app->setShowInMenu(true); |
||
| 36 | $app->setOrder($createdCount); |
||
| 37 | |||
| 38 | $manager->persist($app); |
||
| 39 | $createdCount++; |
||
| 40 | } |
||
| 41 | |||
| 42 | $manager->flush(); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |