wxt-8.x-3.011/modules/custom/wxt_core/src/Annotation/UpdateWxT.php
modules/custom/wxt_core/src/Annotation/UpdateWxT.php
<?php
namespace Drupal\wxt_core\Annotation;
use Drupal\Component\Annotation\PluginID;
/**
* Defines a plugin annotation that contains only a target version number.
*
* Leveraged from code provided by Acquia for the Lightning distribution.
*
* @Annotation
*/
class UpdateWxT extends PluginID {
/**
* {@inheritdoc}
*/
public function getId() {
return $this->getProvider() . ':' . parent::getId();
}
}
