Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
VisitorsHour
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace Drupal\visitors\Plugin\views\field;
4
5use Drupal\views\Attribute\ViewsField;
6
7/**
8 * Field handler to display the hour (server) of the visit.
9 *
10 * @ingroup views_field_handlers
11 */
12#[ViewsField("visitors_hour")]
13final class VisitorsHour extends VisitorsTimestamp {
14
15  /**
16   * {@inheritdoc}
17   */
18  protected $format = 'H';
19
20}