Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / blazy / src / Plugin / Field / FieldFormatter / BlazyFormatter.php
1 <?php
2
3 namespace Drupal\blazy\Plugin\Field\FieldFormatter;
4
5 /**
6  * Plugin for the Blazy image formatter.
7  *
8  * @FieldFormatter(
9  *   id = "blazy",
10  *   label = @Translation("Blazy"),
11  *   field_types = {"image"}
12  * )
13  */
14 class BlazyFormatter extends BlazyFileFormatterBase {
15
16   use BlazyFormatterTrait;
17
18 }