Completed
Pull Request — master (#5850)
by Rico
68:47 queued 03:40
created
lib/Doctrine/ORM/UnitOfWork.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
     /**
1238 1238
      * Schedules an entity for being updated.
1239 1239
      *
1240
-     * @param object $entity The entity to schedule for being updated.
1240
+     * @param \Doctrine\Tests\Models\Forum\ForumUser $entity The entity to schedule for being updated.
1241 1241
      *
1242 1242
      * @return void
1243 1243
      *
@@ -1305,7 +1305,7 @@  discard block
 block discarded – undo
1305 1305
     /**
1306 1306
      * Checks whether an entity is registered to be checked in the unit of work.
1307 1307
      *
1308
-     * @param object $entity
1308
+     * @param \Doctrine\Tests\ORM\NotifyChangedEntity $entity
1309 1309
      *
1310 1310
      * @return boolean
1311 1311
      */
@@ -3112,7 +3112,7 @@  discard block
 block discarded – undo
3112 3112
      *
3113 3113
      * @param object $entity       The entity that owns the property.
3114 3114
      * @param string $propertyName The name of the property that changed.
3115
-     * @param mixed  $oldValue     The old value of the property.
3115
+     * @param null|integer  $oldValue     The old value of the property.
3116 3116
      * @param mixed  $newValue     The new value of the property.
3117 3117
      *
3118 3118
      * @return void
@@ -3312,7 +3312,7 @@  discard block
 block discarded – undo
3312 3312
     /**
3313 3313
      * Verifies if two given entities actually are the same based on identifier comparison
3314 3314
      *
3315
-     * @param object $entity1
3315
+     * @param Proxy $entity1
3316 3316
      * @param object $entity2
3317 3317
      *
3318 3318
      * @return bool
@@ -3456,7 +3456,7 @@  discard block
 block discarded – undo
3456 3456
     }
3457 3457
 
3458 3458
     /**
3459
-     * @param $entityName
3459
+     * @param string $entityName
3460 3460
      */
3461 3461
     private function clearIdentityMap($entityName)
3462 3462
     {
@@ -3474,7 +3474,7 @@  discard block
 block discarded – undo
3474 3474
     }
3475 3475
 
3476 3476
     /**
3477
-     * @param $entityName
3477
+     * @param string $entityName
3478 3478
      */
3479 3479
     private function clearIdentityInsertions($entityName)
3480 3480
     {
Please login to merge, or discard this patch.