Completed
Push — sf2.7 ( 86bd47...6f1cdc )
by Laurent
03:19
created
src/AppBundle/Controller/Settings/Divers/SubFamilyLogController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     }
187 187
 
188 188
     /**
189
-     * @param QueryBuilder $qb
189
+     * @param \Doctrine\ORM\QueryBuilder $qb
190 190
      * @param string       $name
191 191
      */
192 192
     protected function addQueryBuilderSort(\Doctrine\ORM\QueryBuilder $qb, $name)
Please login to merge, or discard this patch.
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/Article.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     /**
333 333
      * Get supplier.
334 334
      *
335
-     * @return Supplier
335
+     * @return string
336 336
      */
337 337
     public function getSupplier()
338 338
     {
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
     /**
357 357
      * Get unit_storage.
358 358
      *
359
-     * @return UnitStorage
359
+     * @return string
360 360
      */
361 361
     public function getUnitStorage()
362 362
     {
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     /**
394 394
      * Get zone_storages.
395 395
      *
396
-     * @return \Doctrine\Common\Collections\Collection
396
+     * @return string
397 397
      */
398 398
     public function getZoneStorages()
399 399
     {
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
     /**
418 418
      * Get family_log.
419 419
      *
420
-     * @return FamilyLog
420
+     * @return string
421 421
      */
422 422
     public function getFamilyLog()
423 423
     {
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
     /**
442 442
      * Get sub_family_log.
443 443
      *
444
-     * @return SubFamilyLog
444
+     * @return string
445 445
      */
446 446
     public function getSubFamilyLog()
447 447
     {
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/Entity/Supplier.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     /**
151 151
      * Get family_log.
152 152
      *
153
-     * @return FamilyLog
153
+     * @return string
154 154
      */
155 155
     public function getFamilyLog()
156 156
     {
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * Get sub_family_log.
176 176
      *
177
-     * @return SubFamilyLog
177
+     * @return string
178 178
      */
179 179
     public function getSubFamilyLog()
180 180
     {
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/SubFamilyLog.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
     /**
167 167
      * Get familylogs
168 168
      *
169
-     * @return \AppBundle\Entity\FamilyLog
169
+     * @return string
170 170
      */
171 171
     public function getFamilylogs()
172 172
     {
Please login to merge, or discard this patch.