WellCommerce\Bundle\PaymentBundle\Entity\PaymentMethodInterface::getConfiguration PHP 메소드

getConfiguration() 공개 메소드

public getConfiguration ( ) : array
리턴 array
    public function getConfiguration() : array;

Usage Example

 public function configure(PaymentMethodInterface $paymentMethod)
 {
     $configuration = $paymentMethod->getConfiguration();
     $resolver = new OptionsResolver();
     $this->configureOptions($resolver);
     $this->configuration = $resolver->resolve($configuration);
 }