A resource representing a incentive.
Inheritance: extends PayPal\Common\PayPalModel
コード例 #1
0
ファイル: IncentiveTest.php プロジェクト: Roc4rdho/app
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage LogoImageUrl is not a fully qualified URL
  */
 public function testUrlValidationForLogoImageUrl()
 {
     $obj = new Incentive();
     $obj->setLogoImageUrl(null);
 }