Completed
Push — master ( 5d31f9...7b1630 )
by Sander
21s queued 10s
created
src/Kunstmaan/MenuBundle/Controller/MenuItemAdminListController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      *
103 103
      * @Route("/{menuid}/items/add", name="kunstmaanmenubundle_admin_menuitem_add", methods={"GET", "POST"})
104 104
      *
105
-     * @return array
105
+     * @return Response
106 106
      */
107 107
     public function addAction(Request $request, $menuid)
108 108
     {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      *
117 117
      * @Route("{menuid}/items/{id}/edit", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_edit", methods={"GET", "POST"})
118 118
      *
119
-     * @return array
119
+     * @return Response
120 120
      */
121 121
     public function editAction(Request $request, $menuid, $id)
122 122
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @Route("{menuid}/items/{id}/delete", requirements={"id" = "\d+"}, name="kunstmaanmenubundle_admin_menuitem_delete", methods={"GET", "POST"})
132 132
      *
133
-     * @return array
133
+     * @return Response
134 134
      */
135 135
     public function deleteAction(Request $request, $menuid, $id)
136 136
     {
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Controller/TagAdminListController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      * @Route("/add", name="kunstmaantaggingbundle_admin_tag_add", methods={"GET", "POST"})
42 42
      * @Template("KunstmaanAdminListBundle:Default:add.html.twig")
43 43
      *
44
-     * @return array
44
+     * @return \Symfony\Component\HttpFoundation\Response
45 45
      */
46 46
     public function addAction(Request $request)
47 47
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Entity/GroupPropertiesTrait.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      *
136 136
      * @param Role $role
137 137
      *
138
-     * @return GroupInterface
138
+     * @return GroupPropertiesTrait
139 139
      *
140 140
      * @throws InvalidArgumentException
141 141
      */
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      *
158 158
      * @param string $role
159 159
      *
160
-     * @return GroupInterface
160
+     * @return GroupPropertiesTrait
161 161
      */
162 162
     public function removeRole($role)
163 163
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      *
175 175
      * @param Role[] $roles array of Role objects
176 176
      *
177
-     * @return GroupInterface
177
+     * @return GroupPropertiesTrait
178 178
      */
179 179
     public function setRoles(array $roles)
180 180
     {
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      *
192 192
      * @param Collection $collection
193 193
      *
194
-     * @return GroupInterface
194
+     * @return GroupPropertiesTrait
195 195
      */
196 196
     public function setRolesCollection(Collection $collection)
197 197
     {
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      *
216 216
      * @param string $name New name of the group
217 217
      *
218
-     * @return GroupInterface
218
+     * @return GroupPropertiesTrait
219 219
      */
220 220
     public function setName($name)
221 221
     {
Please login to merge, or discard this patch.