setPayerViewUrl() public method

URL representing the payer's view of the invoice.
public setPayerViewUrl ( string $payer_view_url )
$payer_view_url string
Exemplo n.º 1
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage PayerViewUrl is not a fully qualified URL
  */
 public function testUrlValidationForPayerViewUrl()
 {
     $obj = new Metadata();
     $obj->setPayerViewUrl(null);
 }