Completed
Push — Recipes ( 630f49...c8afb0 )
by Laurent
12:15 queued 03:48
created
src/Controller/AbstractAppController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
      * @param string                                    $entityName  Name of Entity
236 236
      * @param string                                    $prefixRoute Prefix of Route
237 237
      *
238
-     * @return array
238
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
239 239
      */
240 240
     public function abstractDeleteWithArticlesAction($entity, Request $request, $entityName, $prefixRoute)
241 241
     {
Please login to merge, or discard this patch.
src/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.
src/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 \App\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/Controller/Settings/ArticleController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      * @Method("GET")
159 159
      * @Template()
160 160
      *
161
-     * @param \App\Entity\Supplier $supplier Supplier articles to reassign
161
+     * @param Supplier $supplier Supplier articles to reassign
162 162
      * @return array
163 163
      */
164 164
     public function reassignAction(Supplier $supplier)
@@ -189,8 +189,8 @@  discard block
 block discarded – undo
189 189
      * @Template("settings\article/reassign.html.twig")
190 190
      *
191 191
      * @param \Symfony\Component\HttpFoundation\Request $request  Form request
192
-     * @param \App\Entity\Supplier                      $supplier Supplier to desactivate
193
-     * @return array
192
+     * @param Supplier                      $supplier Supplier to desactivate
193
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
194 194
      */
195 195
     public function changeAction(Request $request, Supplier $supplier)
196 196
     {
Please login to merge, or discard this patch.
src/Controller/Stocks/AbstractInventoryController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Get the Inventory edit type
34 34
      *
35
-     * @param \App\Controller\Stocks\Inventory $inventory Inventaire à éditer
35
+     * @param Inventory $inventory Inventaire à éditer
36 36
      * @return array
37 37
      */
38 38
     protected function getInvetoryEditType(Inventory $inventory)
Please login to merge, or discard this patch.
src/Entity/Orders/Orders.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     /**
159 159
      * Get amount
160 160
      *
161
-     * @return string
161
+     * @return double
162 162
      */
163 163
     public function getAmount()
164 164
     {
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     /**
182 182
      * Get tva
183 183
      *
184
-     * @return string
184
+     * @return double
185 185
      */
186 186
     public function getTva()
187 187
     {
Please login to merge, or discard this patch.
src/Entity/Settings/Diverse/FamilyLog.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
     /**
161 161
      * Get parent.
162 162
      *
163
-     * @return \App\Entity\Settings\Diverse\FamilyLog|null
163
+     * @return integer
164 164
      */
165 165
     public function getParent()
166 166
     {
Please login to merge, or discard this patch.