custom_field-1.0.x-dev/src/Enum/DateTimeRangeDisplayOptions.php
src/Enum/DateTimeRangeDisplayOptions.php
<?php
namespace Drupal\custom_field\Enum;
/**
* Declares constants used in the DateRangeDefaultFormatter.
*/
enum DateTimeRangeDisplayOptions: string {
// Values for the 'from_to' formatter setting.
case Both = 'both';
case StartDate = 'start_date';
case EndDate = 'end_date';
}
