Failed Conditions
Pull Request — develop (#1577)
by Marco
66:01
created
lib/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -298,6 +298,9 @@
 block discarded – undo
298 298
         $lines[] = '}';
299 299
     }
300 300
 
301
+    /**
302
+     * @param string $variableName
303
+     */
301 304
     private function exportJoinColumns(array $joinColumns, array &$lines, $variableName)
302 305
     {
303 306
         $lines[] = '$' . $variableName . ' = array();';
Please login to merge, or discard this patch.
lib/Doctrine/ORM/UnitOfWork.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1174,7 +1174,7 @@  discard block
 block discarded – undo
1174 1174
     /**
1175 1175
      * Schedules an entity for being updated.
1176 1176
      *
1177
-     * @param object $entity The entity to schedule for being updated.
1177
+     * @param \Doctrine\Tests\Models\Forum\ForumUser $entity The entity to schedule for being updated.
1178 1178
      *
1179 1179
      * @return void
1180 1180
      *
@@ -1242,7 +1242,7 @@  discard block
 block discarded – undo
1242 1242
     /**
1243 1243
      * Checks whether an entity is registered to be checked in the unit of work.
1244 1244
      *
1245
-     * @param object $entity
1245
+     * @param \Doctrine\Tests\ORM\NotifyChangedEntity $entity
1246 1246
      *
1247 1247
      * @return boolean
1248 1248
      */
@@ -2705,9 +2705,9 @@  discard block
 block discarded – undo
2705 2705
     /**
2706 2706
      * Notifies this UnitOfWork of a property change in an entity.
2707 2707
      *
2708
-     * @param object $entity       The entity that owns the property.
2708
+     * @param \Doctrine\Tests\Models\CustomType\CustomTypeParent $entity       The entity that owns the property.
2709 2709
      * @param string $propertyName The name of the property that changed.
2710
-     * @param mixed  $oldValue     The old value of the property.
2710
+     * @param integer|null  $oldValue     The old value of the property.
2711 2711
      * @param mixed  $newValue     The new value of the property.
2712 2712
      *
2713 2713
      * @return void
@@ -2906,7 +2906,7 @@  discard block
 block discarded – undo
2906 2906
     /**
2907 2907
      * Verifies if two given entities actually are the same based on identifier comparison
2908 2908
      *
2909
-     * @param object $entity1
2909
+     * @param Proxy $entity1
2910 2910
      * @param object $entity2
2911 2911
      *
2912 2912
      * @return bool
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,6 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @param ClassMetadata $class
87 86
      */
88 87
     public function testEntityTableNameAndInheritance()
89 88
     {
@@ -97,7 +96,6 @@  discard block
 block discarded – undo
97 96
 
98 97
     /**
99 98
      *
100
-     * @param ClassMetadata $class
101 99
      */
102 100
     public function testEntityIndexes()
103 101
     {
Please login to merge, or discard this patch.