Exemplo n.º 1
0
 /**
  * Get Container Types, that could be customized for UPS carrier
  *
  * @return array
  */
 public function getCustomizableContainerTypes()
 {
     $result = [];
     $containerTypes = $this->configHelper->getCode('container');
     foreach (parent::getCustomizableContainerTypes() as $containerType) {
         $result[$containerType] = $containerTypes[$containerType];
     }
     return $result;
 }