LoadTest2BundleData::load()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 1
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