public function TaxType::getPluginCollections in Commerce Core 8.2
Gets the plugin collections used by this object.
Return value
\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.
Overrides ObjectWithPluginCollectionInterface::getPluginCollections
File
- modules/
tax/ src/ Entity/ TaxType.php, line 137
Class
- TaxType
- Defines the tax type entity class.
Namespace
Drupal\commerce_tax\EntityCode
public function getPluginCollections() {
return [
'configuration' => $this
->getPluginCollection(),
];
}