setLogoImageUrl() public method

Logo image url for the incentive.
public setLogoImageUrl ( string $logo_image_url )
$logo_image_url string
示例#1
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage LogoImageUrl is not a fully qualified URL
  */
 public function testUrlValidationForLogoImageUrl()
 {
     $obj = new Incentive();
     $obj->setLogoImageUrl(null);
 }