1
0
mirror of synced 2025-01-18 14:31:40 +03:00
This commit is contained in:
Fabio B. Silva 2012-10-22 20:03:05 -02:00
parent 0fa89647d2
commit 122569eee0
2 changed files with 2 additions and 3 deletions

View File

@ -184,7 +184,7 @@ abstract class AbstractCollectionPersister
* Check for existance of an element * Check for existance of an element
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param \Doctrine\ORM\PersistentCollection * @param object $element
* *
* @return boolean * @return boolean
*/ */
@ -237,7 +237,7 @@ abstract class AbstractCollectionPersister
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param mixed $index * @param mixed $index
* *
* @return object * @return mixed
*/ */
public function get(PersistentCollection $coll, $index) public function get(PersistentCollection $coll, $index)
{ {

View File

@ -646,7 +646,6 @@ class BasicEntityPersister
$result[$owningTable][$sourceColumn] = $value; $result[$owningTable][$sourceColumn] = $value;
} }
} }
return $result; return $result;