Completed
Push — master ( 40ca5b...45a624 )
by Jan
06:24
created

AppFixtures::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 6
rs 10
1
<?php
2
3
namespace App\DataFixtures;
4
5
use App\Entity\Parts\Part;
6
use Doctrine\Bundle\FixturesBundle\Fixture;
7
use Doctrine\Common\Persistence\ObjectManager;
8
9
class AppFixtures extends Fixture
10
{
11
    public function load(ObjectManager $manager)
12
    {
13
        // $product = new Product();
14
        // $manager->persist($product);
15
16
        $manager->flush();
17
    }
18
}
19