| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function load(ObjectManager $manager): void |
||
| 13 | { |
||
| 14 | $connection = new Connection(); |
||
| 15 | $connection->setFromLocationId(11); |
||
| 16 | $connection->setToLocationId(22); |
||
| 17 | $connection->setId(1); |
||
| 18 | $connection->setDirection('north'); |
||
| 19 | $manager->persist($connection); |
||
| 20 | |||
| 21 | $manager->flush(); |
||
| 22 | } |
||
| 29 |