Completed
Push — sf2.7 ( d4139d...8586ff )
by Laurent
03:16
created
src/AppBundle/Controller/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
      * @param  string        $name   route/entity name
217 217
      * @param  string        $route  route name, if different from entity name
218 218
      * @param  array         $params possible route parameters
219
-     * @return Response
219
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse|null
220 220
      */
221 221
     protected function saveFilter(FormInterface $form, $name, $route = null, array $params = null)
222 222
     {
Please login to merge, or discard this patch.
src/AppBundle/Entity/Settings.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
     /**
130 130
      * Set first_inventory.
131 131
      *
132
-     * @param datetime $firstInventory Date du premier inventaire
132
+     * @param \DateTime $firstInventory Date du premier inventaire
133 133
      *
134 134
      * @return Settings
135 135
      */
Please login to merge, or discard this patch.
src/AppBundle/Controller/DefaultController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     /**
71 71
      * Test des entités
72 72
      *
73
-     * @return array
73
+     * @return string|null
74 74
      */
75 75
     private function testEntities()
76 76
     {
Please login to merge, or discard this patch.
src/AppBundle/Entity/Article.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
     /**
297 297
      * Get supplier.
298 298
      *
299
-     * @return Supplier
299
+     * @return string
300 300
      */
301 301
     public function getSupplier()
302 302
     {
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
     /**
321 321
      * Get unit_storage.
322 322
      *
323
-     * @return UnitStorage
323
+     * @return string
324 324
      */
325 325
     public function getUnitStorage()
326 326
     {
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
     /**
358 358
      * Get zone_storages.
359 359
      *
360
-     * @return \Doctrine\Common\Collections\Collection
360
+     * @return string
361 361
      */
362 362
     public function getZoneStorages()
363 363
     {
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
     /**
382 382
      * Get family_log.
383 383
      *
384
-     * @return FamilyLog
384
+     * @return string
385 385
      */
386 386
     public function getFamilyLog()
387 387
     {
Please login to merge, or discard this patch.
src/AppBundle/Entity/Supplier.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
     /**
148 148
      * Get familylog.
149 149
      *
150
-     * @return FamilyLog
150
+     * @return string
151 151
      */
152 152
     public function getFamilylog()
153 153
     {
Please login to merge, or discard this patch.