상속: extends AbstractService
예제 #1
0
파일: Binder.php 프로젝트: Kotys/Gopay
 /**
  * Binds payment buttons fo form
  *
  * @param AbstractPaymentService $service
  * @param Container $container
  * @param array|callable $callbacks
  */
 public function bindPaymentButtons(AbstractPaymentService $service, Container $container, $callbacks)
 {
     foreach ($service->getChannels() as $channel) {
         $this->bindPaymentButton($channel, $container, $callbacks);
     }
 }