We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b94c0e + f921ffe commit 8148141Copy full SHA for 8148141
1 file changed
Resources/doc/groups.rst
@@ -34,13 +34,18 @@ Below is an example configuration for enabling groups support.
34
.. code-block:: xml
35
36
<!-- app/config/config.xml -->
37
- <fos_user:config
38
- db-driver="orm"
39
- firewall-name="main"
40
- user-class="AppBundle\Entity\User"
+ <?xml version="1.0" encoding="UTF-8" ?>
+ <container xmlns="http://symfony.com/schema/dic/services"
+ xmlns:fos-user="http://friendsofsymfony.github.io/schema/dic/user"
41
>
42
- <fos_user:group group-class="AppBundle\Entity\Group" />
43
- </fos_user:config>
+ <fos_user:config
+ db-driver="orm"
+ firewall-name="main"
44
+ user-class="AppBundle\Entity\User"
45
+ >
46
+ <fos_user:group group-class="AppBundle\Entity\Group" />
47
+ </fos_user:config>
48
+ </container>
49
50
The Group class
51
---------------
0 commit comments