Point::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        return $this->guid;
    }

Usage Example

 public function __toString()
 {
     return parent::__toString() . $this->color;
 }
All Usage Examples Of Point::__toString