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