Total Complexity | 5 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class CommentFixtures extends Fixture implements DependentFixtureInterface |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * This method must return an array of fixtures classes |
||
19 | * on which the implementing class depends on |
||
20 | * |
||
21 | * @return array |
||
22 | */ |
||
23 | public function getDependencies() |
||
24 | { |
||
25 | return array( |
||
26 | UserFixtures::class, |
||
27 | TrickFixtures::class, |
||
28 | ); |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Load data fixtures with the passed EntityManager |
||
33 | * |
||
34 | * @param ObjectManager $manager |
||
35 | */ |
||
36 | public function load(ObjectManager $manager) |
||
62 | } |
||
63 | } |