1<?php
2
3namespace Drupal\image_test\Plugin\ImageToolkit\Operation\test;
4
5/**
6 * Builds an image toolkit operation.
7 *
8 * @ImageToolkitOperation(
9 *   id = "foo",
10 *   toolkit = "test",
11 *   operation = "blur",
12 *   label = @Translation("Blur"),
13 *   description = @Translation("Foo.")
14 * )
15 */
16class Foo extends OperationBase {}
17