Chart.php in Charts 5.0.x
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\charts\AnnotationFile
src/Annotation/Chart.phpView source
<?php
namespace Drupal\charts\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an Chart annotation object.
*
* @Annotation
*/
class Chart extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The plugin name.
*
* @var string
*/
public $name;
}