LoadTest2BundleData   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 17
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getDependencies() 0 7 1
A load() 0 3 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