Completed
Pull Request — master (#105)
by
unknown
02:53
created

DatetimeHandler::expand()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 17
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 9.2
c 0
b 0
f 0
cc 4
eloc 11
nc 4
nop 1
1
<?php
2
3
namespace Drupal\Driver\Fields\Drupal7;
4
5
/**
6
 * Datetime field handler for Drupal 7.
7
 */
8
class DatetimeHandler extends AbstractDateHandler {
9
10
  /**
11
   * {@inheritdoc}
12
   */
13
  protected $dateFormat = 'Y-m-d H:i:s';
14
15
}
16