@@ -226,7 +226,7 @@ |
||
| 226 | 226 | * @param \Symfony\Component\HttpFoundation\Request $request Request in progress |
| 227 | 227 | * @param string $entityName Name of Entity |
| 228 | 228 | * @param string $prefixRoute Prefix of Route |
| 229 | - * @return array |
|
| 229 | + * @return \Symfony\Component\HttpFoundation\RedirectResponse |
|
| 230 | 230 | */ |
| 231 | 231 | public function abstractDeleteWithArticlesAction($entity, Request $request, $entityName, $prefixRoute) |
| 232 | 232 | { |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | /** |
| 48 | 48 | * Displays a form to edit an existing item entity. |
| 49 | 49 | * |
| 50 | - * @param Object $entity Entity |
|
| 50 | + * @param Orders $entity Entity |
|
| 51 | 51 | * @param string $prefixRoute Prefix of Route |
| 52 | 52 | * @param string $typePath Path of FormType |
| 53 | 53 | * @return array |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | /** |
| 70 | 70 | * Edits an existing item entity. |
| 71 | 71 | * |
| 72 | - * @param Object $entity Entity |
|
| 72 | + * @param Orders $entity Entity |
|
| 73 | 73 | * @param \Symfony\Component\HttpFoundation\Request $request Request in progress |
| 74 | 74 | * @param string $prefixRoute Prefix of Route |
| 75 | 75 | * @param string $typePath Path of FormType |
@@ -103,7 +103,7 @@ |
||
| 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) |
@@ -57,7 +57,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | */ |