Merge pull request #480

This commit is contained in:
symfony-flex-server[bot]
2018-11-05 08:46:42 +00:00
committed by GitHub
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
namespace App\DataFixtures;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\Persistence\ObjectManager;
class AppFixtures extends Fixture
{
public function load(ObjectManager $manager)
{
// $product = new Product();
// $manager->persist($product);
$manager->flush();
}
}