Remove trailing commas from annotations.

8.0.x
Tim Plunkett 2012-07-28 20:13:18 -05:00
parent b526df2965
commit 15eaff390f
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
/**
* @Plugin(
* plugin_id = "fixed",
* title = @Translation("Fixed"),
* title = @Translation("Fixed")
* )
*/
class Fixed extends ArgumentDefaultPluginBase {

View File

@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
/**
* @Plugin(
* plugin_id = "numeric",
* title = @Translation("Numeric"),
* title = @Translation("Numeric")
* )
*/
class Numeric extends ArgumentValidatorPluginBase {

View File

@ -19,7 +19,7 @@ use Drupal\Core\Annotation\Translation;
/**
* @Plugin(
* plugin_id = "php",
* title = @Translation("PHP Code"),
* title = @Translation("PHP Code")
* )
*/
class Php extends ArgumentValidatorPluginBase {