Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function addTestData() |
||
14 | { |
||
15 | parent::addTestData(); |
||
16 | |||
17 | $this->em->persist(new DummyNotFound('/foo', 'http://example.com/foo')); |
||
18 | $this->em->persist(new DummyNotFound('/foo', 'http://example.com/foo?bar=foo')); |
||
19 | $this->em->persist(new DummyNotFound('/bar', 'http://example.com/bar')); |
||
20 | |||
21 | $this->em->flush(); |
||
22 | } |
||
23 | |||
51 |