setUrl() 공개 메소드

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