Resolve #2874067 "Fix Drupal.Commenting.DocCommentLongArraySyntax coding"
Closed
requested to merge issue/drupal-2874067:2874067-fix-drupal.commenting.doccommentlongarraysyntax-coding into 11.x
1 unresolved thread
Merge request reports
Activity
1717 * ], 1718 * ]; 1719 1719 * 1720 1720 * Would yield the following array of tokens: 1721 * array( 1722 * '{{ arguments.foo.a }}' => 'value', 1723 * '{{ arguments.foo.b }}' => 'value', 1724 * '{{ arguments.bar.a }}' => 'value', 1725 * '{{ arguments.bar.b.c }}' => 'value', 1726 * ); 1721 * [ 1722 * '%foo_a' => 'value' 1723 * '%foo_b' => 'value' 1724 * '%bar_a' => 'value' 1725 * '%bar_b_c' => 'value' 1726 * ];
Please register or sign in to reply