Completed
Push — master ( 78f03f...0b4eb4 )
by Laurent
23:03 queued 10:03
created
src/AppBundle/Controller/ArticleController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
      *
190 190
      * @param \Symfony\Component\HttpFoundation\Request $request  Form request
191 191
      * @param \AppBundle\Entity\Supplier                $supplier Supplier to desactivate
192
-     * @return array
192
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
193 193
      */
194 194
     public function changeAction(Request $request, Supplier $supplier)
195 195
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/AbstractController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
      * @param Object $entity     Entity
224 224
      * @param \Symfony\Component\HttpFoundation\Request $request   Request in progress
225 225
      * @param string $entityName Name of Entity
226
-     * @return array
226
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
227 227
      */
228 228
     public function abstractDeleteWithArticlesAction($entity, Request $request, $entityName)
229 229
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/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 $entityName Name of Entity
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                                    $entityName Name of Entity
75 75
      * @param string                                    $typePath   Path of FormType
Please login to merge, or discard this patch.
src/AppBundle/Controller/AbstractInventoryController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     /**
33 33
      * Get the Inventory edit type
34 34
      *
35
-     * @param \AppBundle\Controller\Inventory $inventory Inventaire à éditer
35
+     * @param Inventory $inventory Inventaire à éditer
36 36
      * @return array
37 37
      */
38 38
     protected function getInvetoryEditType(Inventory $inventory)
@@ -83,7 +83,6 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @param array $articleLine tableau
85 85
      * @param Inventory $inventory Inventaire traité
86
-     * @param array $articles Articles actifs
87 86
      */
88 87
     protected function getLineArticles(array $articleLine, Inventory $inventory)
89 88
     {
Please login to merge, or discard this patch.