You are here

protected static function ListIntegerItem::castAllowedValue in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/options/src/Plugin/Field/FieldType/ListIntegerItem.php \Drupal\options\Plugin\Field\FieldType\ListIntegerItem::castAllowedValue()

Converts a value to the correct type.

Parameters

mixed $value: The value to cast.

Return value

mixed The casted value.

Overrides ListItemBase::castAllowedValue

File

core/modules/options/src/Plugin/Field/FieldType/ListIntegerItem.php, line 75

Class

ListIntegerItem
Plugin implementation of the 'list_integer' field type.

Namespace

Drupal\options\Plugin\Field\FieldType

Code

protected static function castAllowedValue($value) {
  return (int) $value;
}