File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
55namespace PHPSTORM_META {
66
77{% for definition in definitions % }
8- // -- {{ definition.label }}.
8+ // -- {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
99 {% set key = definition . type ~ ' __ids' % }
1010 registerArgumentsSet(' {{ key }}' ,
1111 {% for id in definition . ids % }
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
55namespace PHPSTORM_META {
66
77{% for definition in definitions % }
8- // {{ definition.label }}.
8+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
99 {% set key = definition . type ~ ' __bundles' % }
1010 registerArgumentsSet(' {{ key }}' ,
1111 {% for bundle in definition . bundles % }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace PHPSTORM_META {
66
77{% for definition in definitions % }
88 {% if definition . links | length > 0 % }
9- // {{ definition.label }}.
9+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
1010 registerArgumentsSet(' {{ definition.type ~ ' __links ' }}' ,
1111 {% for link in definition . links % }
1212 ' {{ link }}' ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare(strict_types=1);
55namespace PHPSTORM_META {
66
77{% for definition in definitions % }
8- // {{ definition.label }}.
8+ // {{ definition.label|replace({"\n": " ", "\r": " "}) }}.
99 {% set field_argument_set = ' fields_' ~ definition . type % }
1010 registerArgumentsSet(' {{ field_argument_set }}' ,
1111 {% for field in definition . fields % }
You can’t perform that action at this time.
0 commit comments