LoadTest2BundleData::getDependencies()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
namespace RDV\Bundle\MigrationBundle\Tests\Unit\Fixture\TestPackage\Test2Bundle\Migrations\Data\ORM;
3
4
use Doctrine\Common\DataFixtures\AbstractFixture;
5
use Doctrine\Common\Persistence\ObjectManager;
6
use Doctrine\Common\DataFixtures\DependentFixtureInterface;
7
8
class LoadTest2BundleData extends AbstractFixture implements DependentFixtureInterface
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function getDependencies()
14
    {
15
        return [
16
            'RDV\Bundle\MigrationBundle\Tests\Unit\Fixture\TestPackage'
17
            . '\Test1Bundle\Migrations\Data\ORM\LoadTest1BundleData'
18
        ];
19
    }
20
21
    public function load(ObjectManager $manager)
22
    {
23
    }
24
}
25