contacts_events-8.x-1.x-dev/src/Plugin/Field/FieldType/MappedPriceDataItemList.php
src/Plugin/Field/FieldType/MappedPriceDataItemList.php
<?php
namespace Drupal\contacts_events\Plugin\Field\FieldType;
use Drupal\Core\Field\FieldItemList;
use Drupal\Core\Form\FormStateInterface;
/**
* Represents the mapped price data field.
*/
class MappedPriceDataItemList extends FieldItemList {
/**
* {@inheritdoc}
*/
public function defaultValuesForm(array &$form, FormStateInterface $form_state) {
return [];
}
}
