Test Setup Failed
Branch master (989286)
by Batiwiz - Paquet
12:22
created
Controller/IzbergController.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * @Route("/izberg/connector", name="izberg_connector")
14
-     * @return Response
14
+     * @return \Symfony\Component\HttpFoundation\Response
15 15
      */
16 16
     public function connectAction()
17 17
     {
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @Route("/izberg/users", name="izberg_users")
32
-     * @return Response
32
+     * @return \Symfony\Component\HttpFoundation\Response
33 33
      */
34 34
     public function usersAction()
35 35
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * @Route("/izberg/users/{id}", name="izberg_user", requirements={"id":"\d+"})
43
-     * @return Response
43
+     * @return \Symfony\Component\HttpFoundation\Response
44 44
      */
45 45
     public function userAction(Request $request, int $id)
46 46
     {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     /**
53 53
      * @Route("/izberg/users/schema", name="izberg_user_schema_action")
54
-     * @return Response
54
+     * @return \Symfony\Component\HttpFoundation\Response
55 55
      */
56 56
     public function userSchemaAction()
57 57
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * @Route("/izberg/carts", name="izberg_carts")
65
-     * @return Response
65
+     * @return \Symfony\Component\HttpFoundation\Response
66 66
      */
67 67
     public function cartsAction()
68 68
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * @Route("/izberg/carts/{id}", name="izberg_cart", requirements={"id":"\d+"})
76
-     * @return Response
76
+     * @return \Symfony\Component\HttpFoundation\Response
77 77
      */
78 78
     public function cartAction(Request $request, $id)
79 79
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @Route("/izberg/carts/schema", name="izberg_cart_schema_action")
87
-     * @return Response
87
+     * @return \Symfony\Component\HttpFoundation\Response
88 88
      */
89 89
     public function cartSchemaAction()
90 90
     {
Please login to merge, or discard this patch.