public function ArrayCollection::__toString

Returns a string representation of this object.

Return value

string

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 434

Class

ArrayCollection
An ArrayCollection is a Collection implementation that wraps a regular PHP array.

Namespace

Doctrine\Common\Collections

Code

public function __toString() {
  return __CLASS__ . '@' . spl_object_hash($this);
}