<?php

namespace Drupal\{{ machine_name }};

use Drupal\Component\Plugin\PluginBase;

/**
 * Base class for {{ name|lower }} plugins.
 */
abstract class {{ class_prefix }}PluginBase extends PluginBase implements {{ class_prefix }}Interface {

  /**
   * {@inheritdoc}
   */
  public function method1() {
    return 'default implementation of ' . __FUNCTION__;
  }

  /**
   * {@inheritdoc}
   */
  public function method2() {
    return 'default implementation of ' . __FUNCTION__;
  }

  /**
   * {@inheritdoc}
   */
  public function method3() {
    return 'default implementation of ' . __FUNCTION__;
  }

}
