You are here

JsonMarkup.php in JSON Field 8

Namespace

Drupal\json_field

File

src/JsonMarkup.php
View source
<?php

namespace Drupal\json_field;

use Drupal\Component\Render\MarkupInterface;
use Drupal\Component\Render\MarkupTrait;

/**
 * Provides a markup render plugin that supports JSON.
 *
 * @package Drupal\json_field
 */
class JsonMarkup implements MarkupInterface {
  use MarkupTrait;

}

Classes

Namesort descending Description
JsonMarkup Provides a markup render plugin that supports JSON.