Remove trailing commas from annotations.
parent
b526df2965
commit
15eaff390f
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
||||||
/**
|
/**
|
||||||
* @Plugin(
|
* @Plugin(
|
||||||
* plugin_id = "fixed",
|
* plugin_id = "fixed",
|
||||||
* title = @Translation("Fixed"),
|
* title = @Translation("Fixed")
|
||||||
* )
|
* )
|
||||||
*/
|
*/
|
||||||
class Fixed extends ArgumentDefaultPluginBase {
|
class Fixed extends ArgumentDefaultPluginBase {
|
||||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
||||||
/**
|
/**
|
||||||
* @Plugin(
|
* @Plugin(
|
||||||
* plugin_id = "numeric",
|
* plugin_id = "numeric",
|
||||||
* title = @Translation("Numeric"),
|
* title = @Translation("Numeric")
|
||||||
* )
|
* )
|
||||||
*/
|
*/
|
||||||
class Numeric extends ArgumentValidatorPluginBase {
|
class Numeric extends ArgumentValidatorPluginBase {
|
||||||
|
|
|
@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
|
||||||
/**
|
/**
|
||||||
* @Plugin(
|
* @Plugin(
|
||||||
* plugin_id = "php",
|
* plugin_id = "php",
|
||||||
* title = @Translation("PHP Code"),
|
* title = @Translation("PHP Code")
|
||||||
* )
|
* )
|
||||||
*/
|
*/
|
||||||
class Php extends ArgumentValidatorPluginBase {
|
class Php extends ArgumentValidatorPluginBase {
|
||||||
|
|
Loading…
Reference in New Issue