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

TextWithSummaryHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A expand() 0 3 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