<?php

declare(strict_types=1);

namespace Drupal\{{ machine_name }};

/**
 * Interface for {{ plugin_type }} plugins.
 */
interface {{ class_prefix }}Interface {

  /**
   * Returns the translated plugin label.
   */
  public function label(): string;

}
