<?php

declare(strict_types=1);

namespace Drupal\Tests\Component\Plugin\Fixtures\vegetable;

/**
 * @Plugin(
 *   id = "corn",
 *   label = "Corn",
 *   color = "yellow"
 * )
 */
class Corn implements VegetableInterface {}
