Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-driver / src / Drupal / Driver / Fields / Drupal8 / TextWithSummaryHandler.php
1 <?php
2
3 namespace Drupal\Driver\Fields\Drupal8;
4
5 use Drupal\Driver\Fields\FieldHandlerInterface;
6
7 /**
8  * Default field handler for Drupal 8.
9  */
10 class TextWithSummaryHandler implements FieldHandlerInterface {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function expand($values) {
16     return $values;
17   }
18
19 }