Completed
Pull Request — master (#5579)
by Huberty
09:06
created
lib/Doctrine/ORM/UnitOfWork.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1259,7 +1259,7 @@  discard block
 block discarded – undo
1259 1259
     /**
1260 1260
      * Schedules an entity for being updated.
1261 1261
      *
1262
-     * @param object $entity The entity to schedule for being updated.
1262
+     * @param \Doctrine\Tests\Models\Forum\ForumUser $entity The entity to schedule for being updated.
1263 1263
      *
1264 1264
      * @return void
1265 1265
      *
@@ -1327,7 +1327,7 @@  discard block
 block discarded – undo
1327 1327
     /**
1328 1328
      * Checks whether an entity is registered to be checked in the unit of work.
1329 1329
      *
1330
-     * @param object $entity
1330
+     * @param \Doctrine\Tests\ORM\NotifyChangedEntity $entity
1331 1331
      *
1332 1332
      * @return boolean
1333 1333
      */
@@ -3139,7 +3139,7 @@  discard block
 block discarded – undo
3139 3139
     }
3140 3140
 
3141 3141
     /**
3142
-     * @param $class
3142
+     * @param \Doctrine\Common\Persistence\Mapping\ClassMetadata $class
3143 3143
      * @param string $oid
3144 3144
      */
3145 3145
     public function clearScheduledForSynchronization($class, $oid) {
@@ -3155,7 +3155,7 @@  discard block
 block discarded – undo
3155 3155
      *
3156 3156
      * @param object $entity       The entity that owns the property.
3157 3157
      * @param string $propertyName The name of the property that changed.
3158
-     * @param mixed  $oldValue     The old value of the property.
3158
+     * @param null|integer  $oldValue     The old value of the property.
3159 3159
      * @param mixed  $newValue     The new value of the property.
3160 3160
      *
3161 3161
      * @return void
@@ -3355,7 +3355,7 @@  discard block
 block discarded – undo
3355 3355
     /**
3356 3356
      * Verifies if two given entities actually are the same based on identifier comparison
3357 3357
      *
3358
-     * @param object $entity1
3358
+     * @param Proxy $entity1
3359 3359
      * @param object $entity2
3360 3360
      *
3361 3361
      * @return bool
Please login to merge, or discard this patch.