Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function setNotificationURL($notificationURL)
 {
     $this->checkout->setNotificationURL($notificationURL);
     return $this;
 }
Пример #2
0
 /**
  * @test
  */
 public function setNotificationURLShouldConfigureTheNotificationUri()
 {
     $uri = 'http://chibungo.com';
     $this->checkout->setNotificationURL($uri);
     $this->assertAttributeEquals($uri, 'notificationURL', $this->checkout);
 }