public function ArrayCollection::__toString in Plug 7
Returns a string representation of this object.
Return value
string
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php, line 335
Class
- ArrayCollection
- An ArrayCollection is a Collection implementation that wraps a regular PHP array.
Namespace
Doctrine\Common\CollectionsCode
public function __toString() {
return __CLASS__ . '@' . spl_object_hash($this);
}