public function CheckoutFlow::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/
checkout/ src/ Entity/ CheckoutFlow.php, line 121
Class
- CheckoutFlow
- Defines the checkout flow entity class.
Namespace
Drupal\commerce_checkout\EntityCode
public function getPluginCollections() {
return [
'configuration' => $this
->getPluginCollection(),
];
}