initial commit
This commit is contained in:
16
vendor/symfony/maker-bundle/templates/doctrine/Fixtures.tpl.php
vendored
Normal file
16
vendor/symfony/maker-bundle/templates/doctrine/Fixtures.tpl.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?= "<?php\n" ?>
|
||||
|
||||
namespace <?= $namespace; ?>;
|
||||
|
||||
<?= $use_statements; ?>
|
||||
|
||||
class <?= $class_name ?> extends Fixture
|
||||
{
|
||||
public function load(ObjectManager $manager): void
|
||||
{
|
||||
// $product = new Product();
|
||||
// $manager->persist($product);
|
||||
|
||||
$manager->flush();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user