AppFixtures   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 2
c 1
b 0
f 1
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A load() 0 6 1
1
<?php
2
3
namespace App\DataFixtures;
4
5
use Doctrine\Bundle\FixturesBundle\Fixture;
6
use Doctrine\Persistence\ObjectManager;
7
8
class AppFixtures extends Fixture
9
{
10
    public function load(ObjectManager $manager)
11
    {
12
        // $product = new Product();
13
        // $manager->persist($product);
14
15
        $manager->flush();
16
    }
17
}
18