ToString() public static méthode

Creates a String from the Value.
public static ToString ( Value $value ) : string
$value Value the value to convert
Résultat string the string representation of the value
 /**
  * @covers Pql::ToString
  * @expectedException InvalidArgumentException
  */
 public function testToStringWithUnsupportedValueTypeThrowsException()
 {
     Pql::ToString(new MyValue());
 }
 /**
  * @covers Pql::ToString
  * @expectedException InvalidArgumentException
  */
 public function testToStringWithTargetingValueTypeThrowsException()
 {
     Pql::ToString(new TargetingValue());
 }