Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Enabled.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  const FLAG_ALLOW_MULTIPLE_ADDRESS = 'allow_multiple_address';
19 
23  public function isSatisfiedBy($paymentMethod)
24  {
25  return isset(
26  $this->methodsInfo[$paymentMethod][self::FLAG_ALLOW_MULTIPLE_ADDRESS]
27  ) && $this->methodsInfo[$paymentMethod][self::FLAG_ALLOW_MULTIPLE_ADDRESS];
28  }
29 }