This repository was archived by the owner on Sep 16, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ Interface Naming
41
41
~~~~~~~~~~~~~~~~
42
42
43
43
Interfaces which exist to provide *getters * MUST be suffixed with
44
- "ReadInterface"
44
+ "ReadInterface".
45
45
46
46
Interfaces which exist to provide *setters * MUST be suffixed with
47
- "WriteInterface"
47
+ "WriteInterface".
48
48
49
- "Read/Write" Interfaces, which provide *both * getters and setters, MUST not
49
+ "Read/Write" Interfaces, which provide ** both * * getters and setters, MUST not
50
50
have an additional suffix and MUST extend the "Read" and "Write" interfaces IF
51
51
either exists.
52
52
@@ -76,6 +76,15 @@ If either or both "Read" and "Write" interfaces do not exist, then the
76
76
public function setFoobar($foobar);
77
77
}
78
78
79
+ Dependency Container Configuration
80
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
81
+
82
+ Parameters representing class names MUST be of the form
83
+ ``cmf_bundlename.foo.bar.class ``, example:
84
+
85
+ .. code-block :: xml
86
+
87
+ <parameter key =" cmf_menu.persistence.phpcr.menu_document.class" >Symfony\Cmf\Bundle\MenuBundle\Doctrine\Phpcr\Menu</parameter >
79
88
80
89
Meta: README, CHANGELOG, etc
81
90
----------------------------
You can’t perform that action at this time.
0 commit comments