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 e2b568b commit e7070f4Copy full SHA for e7070f4
src/Symfony/Cmf/Component/Testing/Functional/DbManager/PHPCR.php
@@ -30,6 +30,7 @@ public function getOm()
30
if (!$this->om) {
31
$this->om = $this->getRegistry()->getManager();
32
}
33
+
34
return $this->om;
35
36
@@ -84,9 +85,7 @@ public function createTestNode()
84
85
$session->getNode('/test')->remove();
86
87
- if (! $session->nodeExists('/test')) {
88
- $session->getRootNode()->addNode('test', 'nt:unstructured');
89
- }
+ $session->getRootNode()->addNode('test', 'nt:unstructured');
90
91
$session->save();
92
0 commit comments