Completed
Push — master ( 1af8b6...90bc50 )
by Laurent
03:35
created
src/AppBundle/Controller/Orders/InvoicesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
      * @Method("GET")
104 104
      * @Template()
105 105
      *
106
-     * @param \AppBundle\Entity\Orders $orders Order item to print
106
+     * @param Orders $orders Order item to print
107 107
      * @return \Symfony\Component\HttpFoundation\Response
108 108
      */
109 109
     public function printAction(Orders $orders)
Please login to merge, or discard this patch.
src/AppBundle/Controller/Settings/ArticleController.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @Method("GET")
58 58
      * @Template()
59 59
      *
60
-     * @param \AppBundle\Entity\Article $article Article item to display
60
+     * @param Article $article Article item to display
61 61
      * @return array
62 62
      */
63 63
     public function showAction(Article $article)
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * @Method("GET")
119 119
      * @Template()
120 120
      *
121
-     * @param \AppBundle\Entity\Article $article Article item to edit
121
+     * @param Article $article Article item to edit
122 122
      * @return array
123 123
      */
124 124
     public function editAction(Article $article)
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      * @Method("PUT")
136 136
      * @Template("AppBundle:Article:edit.html.twig")
137 137
      *
138
-     * @param \AppBundle\Entity\Article                 $article Article item to update
138
+     * @param Article                 $article Article item to update
139 139
      * @param \Symfony\Component\HttpFoundation\Request $request Form request
140 140
      * @return array
141 141
      */
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
      * @Template("AppBundle:Article:reassign.html.twig")
191 191
      *
192 192
      * @param \Symfony\Component\HttpFoundation\Request $request  Form request
193
-     * @param \AppBundle\Entity\Supplier                $supplier Supplier to desactivate
194
-     * @return array
193
+     * @param Supplier                $supplier Supplier to desactivate
194
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
195 195
      */
196 196
     public function changeAction(Request $request, Supplier $supplier)
197 197
     {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
      * @Route("/admin/{id}/delete", name="article_delete", requirements={"id"="\d+"})
246 246
      * @Method("DELETE")
247 247
      *
248
-     * @param \AppBundle\Entity\Article                 $article Article item to delete
248
+     * @param Article                 $article Article item to delete
249 249
      * @param \Symfony\Component\HttpFoundation\Request $request Form request
250 250
      * @return \Symfony\Component\HttpFoundation\RedirectResponse
251 251
      */
Please login to merge, or discard this patch.