File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/Symfony/Cmf/Component/Testing/Document Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 13
13
namespace Symfony \Cmf \Component \Testing \Document ;
14
14
15
15
use Doctrine \ODM \PHPCR \Mapping \Annotations as PHPCRODM ;
16
- use Symfony \Cmf \Bundle \CoreBundle \Model \ChildInterface ;
17
16
18
17
/**
19
18
* Test content document
25
24
*
26
25
* @PHPCRODM\Document(referenceable=true)
27
26
*/
28
- class Content implements ChildInterface
27
+ class Content
29
28
{
30
29
/**
31
30
* @PHPCRODM\Id(strategy="parent")
@@ -57,12 +56,12 @@ public function getId()
57
56
return $ this ->id ;
58
57
}
59
58
60
- public function setParentDocument ($ parent )
59
+ public function setParent ($ parent )
61
60
{
62
61
$ this ->parent = $ parent ;
63
62
}
64
63
65
- public function getParentDocument ()
64
+ public function getParent ()
66
65
{
67
66
return $ this ->parent ;
68
67
}
You can’t perform that action at this time.
0 commit comments