We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32fd42 commit 392b52bCopy full SHA for 392b52b
demo/bridge/doctrine/index.php
@@ -9,7 +9,7 @@
9
$entityManager->getConnection()->getConfiguration()->setSQLLogger($debugStack);
10
$debugbar->addCollector(new DebugBar\Bridge\DoctrineCollector($debugStack));
11
12
-$product = new Product();
+$product = new Demo\Product();
13
$product->setName("foobar");
14
15
$entityManager->persist($product);
demo/bridge/doctrine/src/Product.php renamed to demo/bridge/doctrine/src/Demo/Product.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+namespace Demo;
4
+
5
/**
6
* @Entity @Table(name="products")
7
**/
0 commit comments