Skip to content
Snippets Groups Projects

Issue #3393883: Error: Call to undefined method Drupal\commerce_product\Entity\ProductVariationType::geThirdPartySettings()

Open Issue #3393883: Error: Call to undefined method Drupal\commerce_product\Entity\ProductVariationType::geThirdPartySettings()
Open Ivan Tibezh requested to merge issue/commerce_autosku-3393883:8.x-2.x into 8.x-2.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -201,7 +201,7 @@ class CommerceAutoSkuManager implements CommerceAutoSkuManagerInterface {
* @return bool|mixed
*/
protected function getConfig($key) {
$config = $this->bundle_entity_type ? $this->bundle_entity_type->geThirdPartySettings('commerce_autosku') : [];
$config = $this->bundle_entity_type ? $this->bundle_entity_type->getThirdPartySettings('commerce_autosku') : [];
return isset($config[$key]) ? $config[$key] : FALSE;
}
Loading