public function Braintree3DSReview::setLogger in Commerce Braintree 8
Sets the logger.
Parameters
\Psr\Log\LoggerInterface $logger: The new logger.
Return value
$this
File
- src/
Plugin/ Commerce/ CheckoutPane/ Braintree3DSReview.php, line 57
Class
- Braintree3DSReview
- Adds 3DS authentication for Braintree vaulted/stored payment methods.
Namespace
Drupal\commerce_braintree\Plugin\Commerce\CheckoutPaneCode
public function setLogger(LoggerInterface $logger) {
$this->logger = $logger;
return $this;
}