You are here

public function PropertiesExtended::getDependencies in Salesforce Suite 8.3

Return an array of dependencies.

Compatible with DependentPluginInterface::calculateDependencies().

Return value

array Depdencies.

Overrides SalesforceMappingFieldPluginBase::getDependencies

See also

\Drupal\Component\Plugin\DependentPluginInterface::calculateDependencies

File

modules/salesforce_mapping/src/Plugin/SalesforceMappingField/PropertiesExtended.php, line 103

Class

PropertiesExtended
Adapter for entity properties and fields.

Namespace

Drupal\salesforce_mapping\Plugin\SalesforceMappingField

Code

public function getDependencies(SalesforceMappingInterface $mapping) {
  return [
    'module' => [
      'typed_data',
    ],
  ];
}