setUrl() public method

URL linking to item information. Available to payer in transaction history.
public setUrl ( string $url )
$url string
Exemplo n.º 1
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Url is not a fully qualified URL
  */
 public function testUrlValidationForUrl()
 {
     $obj = new Item();
     $obj->setUrl(null);
 }