Completed
Push — develop ( fffb13 )
by Laurent
17:36
created
src/AppBundle/Controller/AbstractController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/Install/AbstractInstallController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      * @param \Symfony\Component\Form\Form               $form      Form of Entity
70 70
      * @param \Doctrine\Common\Persistence\ObjectManager $etm       Entity Manager
71 71
      * @param integer                                     $number   Number of step install
72
-     * @return array Route after valid or not
72
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse Route after valid or not
73 73
      */
74 74
     private function validInstall($entityNew, $form, ObjectManager $etm, $number)
75 75
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/Orders/AbstractOrdersController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.