1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fix DocBlock

This commit is contained in:
Fabio B. Silva 2012-10-20 00:39:51 -03:00
parent ecaa3fd03e
commit 0fa89647d2

View file

@ -157,9 +157,9 @@ abstract class AbstractCollectionPersister
/** /**
* Count the size of this persistent collection * Count the size of this persistent collection
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* *
* @return integer * @return integer
*/ */
public function count(PersistentCollection $coll) public function count(PersistentCollection $coll)
{ {
@ -169,9 +169,9 @@ abstract class AbstractCollectionPersister
/** /**
* Slice elements * Slice elements
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param integer $offset * @param integer $offset
* @param integer $length * @param integer $length
* *
* @return array * @return array
*/ */
@ -183,10 +183,10 @@ 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 mixed \Doctrine\ORM\PersistentCollection * @param \Doctrine\ORM\PersistentCollection
* *
* @return boolean * @return boolean
*/ */
public function contains(PersistentCollection $coll, $element) public function contains(PersistentCollection $coll, $element)
{ {
@ -196,10 +196,10 @@ abstract class AbstractCollectionPersister
/** /**
* Check for existance of a key * Check for existance of a key
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param mixed $key * @param mixed $key
* *
* @return boolean * @return boolean
*/ */
public function containsKey(PersistentCollection $coll, $key) public function containsKey(PersistentCollection $coll, $key)
{ {
@ -209,10 +209,10 @@ abstract class AbstractCollectionPersister
/** /**
* Remove an element * Remove an element
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param object $element * @param object $element
* *
* @return mixed * @return mixed
*/ */
public function removeElement(PersistentCollection $coll, $element) public function removeElement(PersistentCollection $coll, $element)
{ {
@ -222,9 +222,9 @@ abstract class AbstractCollectionPersister
/** /**
* Remove an element by key * Remove an element by key
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* *
* @param mixed $key * @param mixed $key
*/ */
public function removeKey(PersistentCollection $coll, $key) public function removeKey(PersistentCollection $coll, $key)
{ {
@ -234,10 +234,10 @@ abstract class AbstractCollectionPersister
/** /**
* Get an element by key * Get an element by key
* *
* @param \Doctrine\ORM\PersistentCollection $coll * @param \Doctrine\ORM\PersistentCollection $coll
* @param mixed $index * @param mixed $index
* *
* @return object * @return object
*/ */
public function get(PersistentCollection $coll, $index) public function get(PersistentCollection $coll, $index)
{ {