eventbrite_one_way_sync-1.0.0/src/Annotation/EventbriteOneWaySyncPluginAnnotation.php
src/Annotation/EventbriteOneWaySyncPluginAnnotation.php
<?php
namespace Drupal\eventbrite_one_way_sync\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an Expose Status Plugin annotation object.
*
* See the plugin_type_example module of the examples module for how this works.
*
* @see http://drupal.org/project/examples
* @see \Drupal\eventbrite_one_way_sync\EventbriteOneWaySyncPluginManager
* @see plugin_api
*
* @Annotation
*/
class EventbriteOneWaySyncPluginAnnotation extends Plugin {
/**
* A brief, human readable, description of the modifier.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
/**
* Examples of how to use the plugin.
*
* @var array
*/
public $examples;
/**
* How this modifier should be ordered.
*
* @var float
*/
public $weight;
}
