From 15eaff390f3800ffa417604b8487c1fd41b09080 Mon Sep 17 00:00:00 2001 From: Tim Plunkett <git@plnktt.com> Date: Sat, 28 Jul 2012 20:13:18 -0500 Subject: [PATCH] Remove trailing commas from annotations. --- lib/Drupal/views/Plugins/views/argument_default/Fixed.php | 2 +- lib/Drupal/views/Plugins/views/argument_validator/Numeric.php | 2 +- lib/Drupal/views/Plugins/views/argument_validator/Php.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Drupal/views/Plugins/views/argument_default/Fixed.php b/lib/Drupal/views/Plugins/views/argument_default/Fixed.php index 97b1394594a9..cc3cbd353bef 100644 --- a/lib/Drupal/views/Plugins/views/argument_default/Fixed.php +++ b/lib/Drupal/views/Plugins/views/argument_default/Fixed.php @@ -19,7 +19,7 @@ /** * @Plugin( * plugin_id = "fixed", - * title = @Translation("Fixed"), + * title = @Translation("Fixed") * ) */ class Fixed extends ArgumentDefaultPluginBase { diff --git a/lib/Drupal/views/Plugins/views/argument_validator/Numeric.php b/lib/Drupal/views/Plugins/views/argument_validator/Numeric.php index e15b0ea0adf6..fc88a23342df 100644 --- a/lib/Drupal/views/Plugins/views/argument_validator/Numeric.php +++ b/lib/Drupal/views/Plugins/views/argument_validator/Numeric.php @@ -19,7 +19,7 @@ /** * @Plugin( * plugin_id = "numeric", - * title = @Translation("Numeric"), + * title = @Translation("Numeric") * ) */ class Numeric extends ArgumentValidatorPluginBase { diff --git a/lib/Drupal/views/Plugins/views/argument_validator/Php.php b/lib/Drupal/views/Plugins/views/argument_validator/Php.php index 133f6b0ef184..e39e61174f5b 100644 --- a/lib/Drupal/views/Plugins/views/argument_validator/Php.php +++ b/lib/Drupal/views/Plugins/views/argument_validator/Php.php @@ -19,7 +19,7 @@ /** * @Plugin( * plugin_id = "php", - * title = @Translation("PHP Code"), + * title = @Translation("PHP Code") * ) */ class Php extends ArgumentValidatorPluginBase { -- GitLab