Skip to content

Commit

Permalink
Use single quotes for plugin manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
chesn0k committed Jun 6, 2024
1 parent 7794c26 commit 74e87b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ use Drupal\{{ machine_name }}\{{ class_prefix }}PluginBase;
* Plugin implementation of the {{ plugin_type }}.
*/
#[{{ class_prefix }}(
id: "foo",
label: new TranslatableMarkup("Foo"),
description: new TranslatableMarkup("Foo description."),
id: 'foo',
label: new TranslatableMarkup('Foo'),
description: new TranslatableMarkup('Foo description.'),
)]
final class Foo extends {{ class_prefix }}PluginBase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* Plugin implementation of the bar.
*/
#[Bar(
id: "foo",
label: new TranslatableMarkup("Foo"),
description: new TranslatableMarkup("Foo description."),
id: 'foo',
label: new TranslatableMarkup('Foo'),
description: new TranslatableMarkup('Foo description.'),
)]
final class Foo extends BarPluginBase {

Expand Down

0 comments on commit 74e87b6

Please sign in to comment.