Completed
Push — master ( 7dfcbf...81a5c5 )
by Jonathan
02:07
created

TextWithSummaryHandler::expand()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/**
4
 * @file
5
 * Contains \Drupal\Driver\Fields\Drupal8\TextWithSummaryHandler.
6
 */
7
8
namespace Drupal\Driver\Fields\Drupal8;
9
10
use Drupal\Driver\Fields\FieldHandlerInterface;
11
12
/**
13
 * Default field handler for Drupal 8.
14
 */
15
class TextWithSummaryHandler implements FieldHandlerInterface {
16
17
  /**
18
   * {@inheritdoc}
19
   */
20
  public function expand($values) {
21
    return $values;
22
  }
23
24
}
25